-
Notifications
You must be signed in to change notification settings - Fork 11
fix(ci): make unique and improve Github workflow job ids to make it easier to reference them from Github settings #918
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
base: main
Are you sure you want to change the base?
Conversation
…asier to reference them from Github settings Refs: a4da94f
.github/workflows/pr-change-set.yaml
Outdated
@@ -15,7 +15,7 @@ permissions: | |||
contents: read | |||
|
|||
jobs: | |||
build: | |||
build-package: |
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.
build-package: | |
check-and-build-package: |
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.
Commit 2adc4d5.
Also, should we then rename _build.yaml
to _check_and_build.yaml
? The only job in this reusable workflow is also named check-and-build-package
so maybe renaming the workflow file would improve consistency between file name and executed jobs? 🤔
.github/workflows/release.yaml
Outdated
@@ -11,7 +11,7 @@ permissions: | |||
contents: read | |||
|
|||
jobs: | |||
check: | |||
check-package-for-release: |
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.
We also trigger this job
on push
to the main
branch.
check-package-for-release: | |
check-and-build-package: |
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.
Commit 2adc4d5.
.github/workflows/release.yaml
Outdated
bump: | ||
needs: check | ||
bump-package-version: | ||
needs: [check-package-for-release] |
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.
needs: [check-package-for-release] | |
needs: [check-and-build-package] |
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.
Commit 2adc4d5.
Refs: a4da94f