Skip to content

Commit

Permalink
Merge pull request #1375 from creative-commoners/pulls/2/merge-up
Browse files Browse the repository at this point in the history
MNT Add merge-up workflow
  • Loading branch information
GuySartorelli authored Aug 2, 2023
2 parents a9f6a31 + 4623d9b commit a52e094
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 12:00 PM UTC, only on Friday
schedule:
- cron: '0 12 * * 5'
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 a52e094

Please sign in to comment.