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

[main] Update dependabot configurations #561

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
48 changes: 48 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
version: "2"
updates:
- package-ecosystem: gomod
directories:
- /
schedule:
interval: weekly
ignore:
- dependency-name: knative.dev/*
- dependency-name: k8s.io/*
update-types:
- version-update:semver-major
- version-update:semver-minor
- dependency-name: github.com/openshift/*
update-types:
- version-update:semver-major
- version-update:semver-minor
- dependency-name: sigs.k8s.io/controller-runtime
update-types:
- version-update:semver-major
- version-update:semver-minor
target-branch: release-v1.15
commit-message:
prefix: '[release-v1.15][gomod]'
open-pull-requests-limit: 10
- package-ecosystem: gomod
directories:
- /
schedule:
interval: weekly
ignore:
- dependency-name: knative.dev/*
- dependency-name: k8s.io/*
update-types:
- version-update:semver-major
- version-update:semver-minor
- dependency-name: github.com/openshift/*
update-types:
- version-update:semver-major
- version-update:semver-minor
- dependency-name: sigs.k8s.io/controller-runtime
update-types:
- version-update:semver-major
- version-update:semver-minor
target-branch: release-v1.16
commit-message:
prefix: '[release-v1.16][gomod]'
open-pull-requests-limit: 10
44 changes: 44 additions & 0 deletions .github/workflows/dependabot-deps.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@

name: Dependabot

on:
pull_request:

permissions:
contents: write

jobs:
update-deps:
name: Update deps
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
path: ./src/github.com/${{ github.repository }}
fetch-depth: 0

- name: Setup Golang
uses: openshift-knative/hack/actions/setup-go@main

- name: Install yq
run: |
go install github.com/mikefarah/yq/v3@latest
- name: Generate files
working-directory: ./src/github.com/${{ github.repository }}
run: make generate-release

- name: git push
working-directory: ./src/github.com/${{ github.repository }}
run: |
if ! git diff --exit-code --quiet
then
git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add .
git commit -m "Run generate release"
git push
fi