Skip to content

Commit

Permalink
Update acceptance-tests.yml
Browse files Browse the repository at this point in the history
Add always() condition to ensure only PR trigger ChangeLog update
  • Loading branch information
alexhung authored Jul 2, 2024
1 parent edbb4ad commit 93519fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/acceptance-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
update-changelog:
runs-on: ubuntu-latest
needs: acceptance-tests
if: ${{ github.event_name == 'pull_request' }} && ${{ needs.acceptance-tests.result == 'success' }}
if: always() && (${{ github.event_name == 'pull_request' }} && ${{ needs.acceptance-tests.result == 'success' }})
permissions:
contents: write
steps:
Expand Down

0 comments on commit 93519fb

Please sign in to comment.