Skip to content

Commit

Permalink
Update push-trigger.yml
Browse files Browse the repository at this point in the history
Signed-off-by: bn46 <[email protected]>
  • Loading branch information
bn46 authored Oct 24, 2024
1 parent 7cc7f4a commit dc42049
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/push-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
#PR_URL: https://github.com/${{ github.repository }}/pull/${{ github.event.pull_request.number || 'N/A' }}
COMMIT: ${{ github.sha }}
REPO: ${{ github.repository }}
JOB_URL: ${{ contains(github.event_name, 'pull_request') && github.event.pull_request ? format('https://github.com/{0}/pull/{1}', github.repository, github.event.pull_request.number) : 'N/A' }}
JOB_URL: ${{ github.event_name == 'pull_request' && github.event.pull_request != null && github.event.pull_request.number != null ? format('https://github.com/{0}/pull/{1}', github.repository, github.event.pull_request.number) }}
#JOB_URL: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
MESSAGE: ${{ github.event.head_commit.message || github.event.pull_request.title }}

Expand Down

0 comments on commit dc42049

Please sign in to comment.