8000 Add [skip-changelog] prefix to dependabot commit by alessio-perugini · Pull Request #2586 · arduino/arduino-cli · GitHub
[go: up one dir, main page]

Skip to content

Add [skip-changelog] prefix to dependabot commit #2586

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

Merged
merged 2 commits into from
May 14, 2024
Merged
Changes from 1 commit
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
Next Next commit
Add [skip-changelog] prefix to dependabot commit
We use the `[skip-changelog]` prefix to avoid having such commits in our
changelog history.
When merging dependabot PRs we always manually add the prefix, but it's
common to forget about it at costs of manually removing that entry in
the changelog when publishing a new release.

With this PR dependabot wil add that prefix in every commit, the GH PR
will be open with the same commit name, and when pressing the `merge squash`
we won't need to manually add the prefix.
  • Loading branch information
alessio-perugini committed Apr 30, 2024
commit 63fcd97b2ecaa34678ef47333a83bebeb288536b
4 changes: 4 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ updates:
interval: daily
labels:
- "topic: infrastructure"
commit-message:
prefix: "[skip-changelog] "
- package-ecosystem: gomod
directory: /
schedule:
interval: daily
open-pull-requests-limit: 10
labels:
- "topic: infrastructure"
commit-message:
prefix: "[skip-changelog] "
0