PoC round 2: test if unsigned tag is blocked by ruleset #2
Workflow file for this run
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
| name: PoC - tag trigger fires from arbitrary branch | |
| on: | |
| push: | |
| tags: | |
| - 'v[0-9]+.[0-9]+.[0-9]+*' | |
| permissions: read-all | |
| jobs: | |
| proof: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Print trigger context | |
| run: | | |
| echo "SHA: ${{ github.sha }}" | |
| echo "Ref: ${{ github.ref }}" | |
| echo "Event: ${{ github.event_name }}" |