[skip ci] skips also non-CI workflows
See original GitHub issueHello! This is a direct follow up of #774 and https://github.blog/changelog/2021-02-08-github-actions-skip-pull-request-and-push-workflows-with-skip-ci/ .
It is very nice that finally having [ci skip]
in a PR’s current commit does not activate the CI for pull_request
. Unfortunately, it also did not run other things in .github/workflows
such as the PR labeler and some triage actions (e.g., welcome message) that are unrelated to the CI testing.
How do I tell Actions that some workflows should not respect this new [skip ci]
rule you have implemented on your server side?
Thank you!
Issue Analytics
- State:
- Created 3 years ago
- Reactions:2
- Comments:10 (3 by maintainers)
Top Results From Across the Web
Skipping with [skip ci] doesn't skip the whole workflow
Hi,. I have recently run into the issue with skipping CI via commit message. Circle CI fails to skip all the jobs in...
Read more >Skip pull request and push workflows with [skip ci]
GitHub Actions now supports skipping push and pull_request workflows by looking for some common keywords in your commit message. If any commit ...
Read more >Skip pull request and push GitHub Action workflows with ...
If any commit message in your push or the HEAD commit of your PR contains the strings [skip ci], [ci skip], [no ci],...
Read more >[skip ci] still triggers workflow - Feedback & Bug Reports
I'm committing code with [skip ci] in the commit message. On workflows that start with an approval step, these are queued as normal....
Read more >Auto commit from GitHub actions on push using "[skip ci]" in ...
Auto commit from GitHub actions on push using "[skip ci]" in comment also skips workflow trigger on tag release · I don't think...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Skipping all workflows is a bug that is being addressed. It should only skip
pull_request
andpush
. If you want to have a labeler workflow that can’t be skipped you can switch to usingpull_request_target
which will always be run.I see that it no longer skips
pull_request_target
. So as far as I am concerned, this is fixed for me. Thanks!