Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/workflows/update-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ on:
schedule:
- cron: "0 0 * * *"

concurrency:
group: update-redirect-links
cancel-in-progress: false
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it should cancel in progress to start the most recent one, no?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, I want whatever runs first to complete, so that you don't end up in a race where one has say created the branch but not the PR, and the second run then collides with the existing branch.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
cancel-in-progress: false
# Allow existing runs to complete to avoid branch collisions
cancel-in-progress: false

Worth adding this to clarify?


jobs:
update-redirect-links:
name: Update Redirect Links
Expand Down
Loading