Skip to content

Commit

Permalink
Add dependabot config to auto-update GitHub Actions
Browse files Browse the repository at this point in the history
Signed-off-by: Thomas Farr <[email protected]>
  • Loading branch information
Xtansia committed Nov 6, 2024
1 parent 6bf8a38 commit a993823
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,27 @@
updates:
- directory: /
open-pull-requests-limit: 1
package-ecosystem: gradle
open-pull-requests-limit: 3
schedule:
interval: weekly
labels:
- "dependabot"
- "dependencies"
- directory: /java-client/
open-pull-requests-limit: 1
package-ecosystem: gradle
open-pull-requests-limit: 3
schedule:
interval: weekly
labels:
- "dependabot"
- "dependencies"
- directory: /
package-ecosystem: github-actions
open-pull-requests-limit: 3
schedule:
interval: weekly
labels:
- "dependabot"
- "dependencies"
- "github-actions"
version: 2
2 changes: 1 addition & 1 deletion .github/workflows/dependabot_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
permissions:
pull-requests: write
contents: write
if: ${{ github.actor == 'dependabot[bot]' }}
if: ${{ github.actor == 'dependabot[bot]' && !contains(github.event.pull_request.labels.*.name, 'github-actions') }}
steps:
- name: GitHub App token
id: github_app_token
Expand Down

0 comments on commit a993823

Please sign in to comment.