Skip to content
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

ci: skip azp on release please commits #338

Merged
merged 1 commit into from
Sep 28, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ jobs:
release-type: simple
package-name: hetzner.hcloud

# Skip Azure pipeline for release-please commits
pull-request-title-pattern: |-
chore${scope}: release${component} ${version}
[skip azp]

apricote marked this conversation as resolved.
Show resolved Hide resolved
# We use antsibull-changelog for the actual user-facing changelog.
changelog-path: changelogs/dev-changelog.md

Expand Down Expand Up @@ -72,6 +77,8 @@ jobs:
git config user.email "[email protected]"

git add changelogs/ CHANGELOG.rst
git commit -m "chore(main): changelog for version ${{ needs.release-please.outputs.version }}"
git commit \
-m "chore(main): changelog for version ${{ needs.release-please.outputs.version }}" \
-m "[skip azp]"

git push origin ${{ needs.release-please.outputs.branch }}