Skip Pipeline Execution
About 195 wordsLess than 1 minute
Actively Skip Pipeline
You can skip pipeline execution using either of the following methods:
- Include
[ci skip]or[skip ci]in the most recent commit message - Use
git push -o ci.skip
# Method 1: Mark in commit message
git commit -m "feat: some feature [ci skip]"
git push origin main# Method 2: Skip via push option
git commit -m "feat: some feature"
git push origin main -o ci.skipTips
These methods only take effect in push, commit.add, and branch.create events.
Event Ignoring
To avoid unnecessary pipeline executions, Cloud Native Build ignores the following scenarios:
- Changes to files in secret repositories
- Events where the head commit timestamp is earlier than 10 minutes before the repository creation time during repository migration
- Git operations triggered when "Allow Auto Trigger" is unchecked in repository settings
- When "Allow Auto Trigger for Forked Repositories by Default" is unchecked in repository settings, forked repositories will have "Allow Auto Trigger" unchecked by default