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

Get dependabot to watch the release/** branches #1389

Merged
merged 1 commit into from
Nov 23, 2023
Merged
Show file tree
Hide file tree
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
22 changes: 22 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,25 @@ updates:
directory: "/"
schedule:
interval: "weekly"

# Monitor old release branches as well
- package-ecosystem: "gomod"
target-branch: "release/v0.12.x"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "gomod"
target-branch: "release/v0.11.x"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "gomod"
target-branch: "release/v0.10.x"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "gomod"
target-branch: "release/v0.9.x"
directory: "/"
schedule:
interval: "weekly"
3 changes: 3 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ To produce a major/minor release from `main` a maintainer will:
- **release notes**
- **asset checksums**
- The release notes should be edited and cleaned
- Add the new release branch as a `target-branch` to the [dependabot config][dependabot-config] so that dependency bump PRs can be opened against it
- Evaluate if support can be dropped for old release branches and remove them from the config

## Releasing a new Patch Version

Expand All @@ -45,3 +47,4 @@ To produce a patch release from an existing `release` branch a maintainer will:

[release]: https://github.com/pivotal/kpack/releases
[github-release]: https://github.com/pivotal/kpack/blob/main/.github/workflows/ci.yaml
[dependabot-config]: ./.github/dependabot.yml
Loading