Skip to content

Commit

Permalink
Add dependabot and auto hack scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
nak3 committed Jul 31, 2023
1 parent b13f88f commit a09008c
Show file tree
Hide file tree
Showing 2 changed files with 51 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "gomod"
directory: "/"
schedule:
interval: "weekly"
ignore:
- dependency-name: "k8s.io/*"
- dependency-name: "knative.dev/*"
38 changes: 38 additions & 0 deletions .github/workflows/knative-dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: dependabot - hack scripts

on:
pull_request:

permissions:
contents: write

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

- name: Run hack scripts
working-directory: ./src/github.com/${{ github.repository }}
run: |
./hack/update-deps.sh
./hack/update-codegen.sh
- 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 ./hack/update-codegen.sh"
git push
fi

0 comments on commit a09008c

Please sign in to comment.