-
Notifications
You must be signed in to change notification settings - Fork 4
ci: prevent stale jobs from rolling back Pages #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,7 @@ on: | |
| - main | ||
| paths-ignore: | ||
| - ci/llgo-size/site/** | ||
| - ci/llgo-size/publish.sh | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [P3] publish.sh added to push paths-ignore but not pull_request This PR adds |
||
| - ci/llgo-size/publish-site.sh | ||
| - ci/llgo-size/prepare-pages-branch.sh | ||
| - ci/llgo-performance/** | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[P3] Pages trigger lists perf/compat publish.sh it never runs
The Pages workflow adds
ci/llgo-performance/publish.shandci/llgo-compatibility/publish.shto itspushpathstrigger, but thepublish-sitejob only runsprepare-pages-branch.shandci/llgo-size/publish-site.sh— never the performance/compatibilitypublish.sh. Editing only one of those (without touchingci/llgo-size/site/**) will launch a Pages redeploy that re-pushes identical assets. The rationale (all three share theci/llgo-size/site/assets, so a change to their copy logic should refresh the site) is reasonable but non-obvious; a one-line comment here would prevent future confusion.