Skip to content

Commit

Permalink
github automation improvements (#367)
Browse files Browse the repository at this point in the history
Enable some ✨ fancy ✨ GitHub features to help maintenance and release
activities:

1. dependabot: group HashiCorp Go library updates together when possible
1. setup an initial `.github/release.yml` to help get CHANGELOG updates
closer to the right format automatically
  • Loading branch information
jharley authored Sep 18, 2023
1 parent 54bd888 commit 1ee8e41
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,15 @@ updates:
directory: "/"
schedule:
interval: "daily"
labels:
- dependencies
groups:
hashicorp:
patterns:
- "github.com/hashicorp/*"
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "daily"
labels:
- dependencies
22 changes: 22 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
changelog:
exclude:
labels:
- no-changelog
categories:
- title: NOTES
labels:
- breaking-change
- title: ENHANCEMENTS
labels:
- improvement
- feature
- title: BUGFIXES
labels:
- bug
- title: HOUSEKEEPING
labels:
- refactor
- dependencies
- title: Other Changes
labels:
- "*"

0 comments on commit 1ee8e41

Please sign in to comment.