Skip to content

Commit

Permalink
MNT Add mergeup workflow (#251)
Browse files Browse the repository at this point in the history
  • Loading branch information
GuySartorelli authored Sep 18, 2023
1 parent 003f53a commit 1ce9a89
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/merge-up.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Merge-up

on:
# At 2:20 PM UTC, only on Saturday
schedule:
- cron: '20 14 * * 6'
workflow_dispatch:

jobs:
merge-up:
name: Merge-up
# Only run cron on the silverstripe account
if: (github.event_name == 'schedule' && github.repository_owner == 'silverstripe') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
steps:
- name: Merge-up
uses: silverstripe/gha-merge-up@v1

0 comments on commit 1ce9a89

Please sign in to comment.