File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,22 @@ permissions:
1111 contents : read
1212jobs :
1313 pack :
14- if : ${{ github.event.workflow_run.event == 'release' && github.event.workflow_run.conclusion == 'success' }}
14+ # if: ${{ github.event.workflow_run.event == 'release' && github.event.workflow_run.conclusion == 'success' }}
1515 name : " Pack"
1616 runs-on : ubuntu-latest
1717 steps :
18+ - name : " Variables"
19+ run : |
20+ echo "wr.event: ${{ github.event.workflow_run.event }}"
21+ echo "wr.conclusion: ${{ github.event.workflow_run.conclusion }}"
22+ echo "wr.head_branch: ${{ github.event.workflow_run.head_branch }}"
23+ echo "wr.id: ${{ github.event.workflow_run.id }}"
24+ echo "wr.name: ${{ github.event.workflow_run.name }}"
25+ echo "wr.run_number: ${{ github.event.workflow_run.run_number }}"
26+ echo "wr.run_attempt: ${{ github.event.workflow_run.run_attempt }}"
27+ echo "wr.url: ${{ github.event.workflow_run.url }}"
28+ echo "wr.head_sha: ${{ github.event.workflow_run.head_sha }}"
29+ echo "wr.head_ref: ${{ github.event.workflow_run.head_ref }}"
1830 # Checkout
1931 - name : Checkout
2032 uses : actions/checkout@v5
You can’t perform that action at this time.
0 commit comments