This repository was archived by the owner on Oct 6, 2025. It is now read-only.
chore(deps): Lock file maintenance python dependencies #255
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Making changes? https://github.com/nektos/act may help you test locally | |
| name: "Build PR to Artifact" | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: "${{ github.workflow }}-${{ github.event.number || github.ref }}" | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| uses: ./.github/workflows/build-artifact.yaml | |
| publish-pr-number: | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: "pr number / save" | |
| if: "${{ always() }}" | |
| run: "echo ${{ github.event.number }} > ./pr-num.txt" | |
| - name: "pr number / publish" | |
| if: "${{ always() }}" | |
| uses: "actions/upload-artifact@v4" | |
| with: | |
| name: "pr-num" | |
| path: "./pr-num.txt" | |
| retention-days: 1 | |