Skip to content

Commit

Permalink
Update dependabot actions and scheduled files weekly.
Browse files Browse the repository at this point in the history
This should reduce the amount of PR spam we get.

If there's critical vulnerabilities: they will be updated more often or
can be done manually with a workflow dispatch.
  • Loading branch information
MikeMcQuaid committed Jan 9, 2025
1 parent 6634409 commit dc6063c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: daily
interval: weekly
allow:
- dependency-type: all
# The actions in triage-issues.yml are updated in the Homebrew/.github repo
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-shared-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
run: ./.github/actions/sync/shared-config.rb "${TARGET}" '/home/linuxbrew/.linuxbrew/Homebrew'

- name: Create pull request
if: github.ref == 'refs/heads/master' && steps.detect_changes.outputs.pull_request == 'true'
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
run: |
cd "target/$GH_REPO"
git checkout -b sync-shared-config
Expand Down

0 comments on commit dc6063c

Please sign in to comment.