Skip to content

Commit

Permalink
Merge pull request #12 from alphagov/run-on-schedule
Browse files Browse the repository at this point in the history
Run Dependabot merger Mon-Fri at 10:30am
  • Loading branch information
ChrisBAshton authored Jul 28, 2023
2 parents 773514e + 00eade5 commit 12251ee
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/merge-dependabot-prs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: "Merge Dependabot PRs"

on:
schedule:
# 10:30am, Mon-Fri. There is also logic within the script to prevent running on bank holidays.
- cron: '30 10 * * 1-5'
workflow_dispatch: {}

jobs:
review-users:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true

- name: Run Dependabot-merger script
env:
AUTO_MERGE_TOKEN: ${{ secrets.AUTO_MERGE_TOKEN }}
run: |
bundle exec ruby bin/merge_dependabot_prs.rb

0 comments on commit 12251ee

Please sign in to comment.