silverstripe-gridfieldexten.../.github/workflows/merge-up.yml

23 lines
497 B
YAML
Raw Normal View History

2023-08-09 06:19:09 +02:00
name: Merge-up
on:
2024-05-16 00:24:05 +02:00
# At 3:15 PM UTC, only on Monday
2023-08-09 06:19:09 +02:00
schedule:
2024-05-16 00:24:05 +02:00
- cron: '15 15 * * 1'
2023-08-09 06:19:09 +02:00
workflow_dispatch:
2024-05-16 00:24:05 +02:00
permissions: {}
2023-08-09 06:19:09 +02:00
jobs:
merge-up:
name: Merge-up
# Only run cron on the symbiote account
if: (github.event_name == 'schedule' && github.repository_owner == 'symbiote') || (github.event_name != 'schedule')
runs-on: ubuntu-latest
2024-05-16 00:24:05 +02:00
permissions:
contents: write
actions: write
2023-08-09 06:19:09 +02:00
steps:
- name: Merge-up
uses: silverstripe/gha-merge-up@v1