mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
23 lines
497 B
YAML
23 lines
497 B
YAML
name: Merge-up
|
|
|
|
on:
|
|
# At 3:15 PM UTC, only on Monday
|
|
schedule:
|
|
- cron: '15 15 * * 1'
|
|
workflow_dispatch:
|
|
|
|
permissions: {}
|
|
|
|
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
|
|
permissions:
|
|
contents: write
|
|
actions: write
|
|
steps:
|
|
- name: Merge-up
|
|
uses: silverstripe/gha-merge-up@v1
|