Skip to content

Commit

Permalink
Relax dependabot for DeterminateSystems activity
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Mar 14, 2024
1 parent 166887f commit 212a411
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,14 @@ updates:
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'daily'
interval: 'weekly'
ignore:
- dependency-name: 'crate-ci/typos'
groups:
determinatesystems-actions:
patterns:
- 'DeterminateSystems*'

- package-ecosystem: 'bundler'
directory: '/'
schedule:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/merge-bot-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ jobs:
id: metadata
uses: dependabot/fetch-metadata@v1.6.0
- name: Wait other jobs
if: ${{steps.metadata.outputs.update-type != 'version-update:semver-major'}}
if: ${{ steps.metadata.outputs.update-type != 'version-update:semver-major' }}
uses: kachick/wait-other-jobs@v2.0.3
timeout-minutes: 10
with:
retry-method: 'equal_intervals'
min-interval-seconds: '15'
- name: Approve and merge
if: ${{steps.metadata.outputs.update-type != 'version-update:semver-major'}}
if: ${{ steps.metadata.outputs.update-type != 'version-update:semver-major' || contains(steps.metadata.outputs.dependency-names, 'DeterminateSystems') }}
run: gh pr review --approve "$PR_URL" && gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
Expand Down

0 comments on commit 212a411

Please sign in to comment.