Skip to content

Commit

Permalink
chore: add comment to github workflow about skipping CI
Browse files Browse the repository at this point in the history
It is possible to skip running CI by prefixing the following notation in
the title of your commit message e.g.,

"[skip ci] my commit message"

For more information, please read the GitHub
[documentation](https://docs.github.com/en/actions/managing-workflow-runs-and-deployments/managing-workflow-runs/skipping-workflow-runs)

Note: You will not be able to merge into develop or main without running
CI. To run CI either:
- edit the last commit message using `git commit --amend` and remove the
  tag "[skip ci]" or,
- create a new commit without a "[skip ci]" tag
  • Loading branch information
TomMelt committed Jan 7, 2025
1 parent af56639 commit f8b5d84
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/test_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ on:
#
# For more information, please read the GitHub
# [documentation](https://docs.github.com/en/actions/managing-workflow-runs-and-deployments/managing-workflow-runs/skipping-workflow-runs)
#
# Note: You will not be able to merge into develop or main without running CI. To run CI either:
# - edit the last commit message using `git commit --amend` and remove the tag "[skip ci]" or,
# - create a new commit without a "[skip ci]" tag
push:
branches: [ main, develop ]
pull_request:
Expand Down

0 comments on commit f8b5d84

Please # to comment.