Skip to content

Commit

Permalink
Prevent CHANGELOG.md from triggering staging deploy
Browse files Browse the repository at this point in the history
After #1679, the staging deploy that occurs during a release merge gets interrupted by a second staging deploy triggered by `auto`'s push to master containing the updated `CHANGELOG.md`.

This PR prevents that second deploy from running, avoiding a spurious deploy failure that happens when the first deploy is canceled.
  • Loading branch information
waxlamp committed Oct 5, 2023
1 parent 5791290 commit 96645bd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/backend-staging-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- master
paths-ignore:
- "web/**"
- "CHANGELOG.md"

concurrency:
# If this workflow is already running, cancel it to avoid a scenario
Expand Down

0 comments on commit 96645bd

Please sign in to comment.