mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
workflow for nightly merges from dev to main
This commit is contained in:
parent
b09cf02baf
commit
36903efe19
1 changed files with 23 additions and 0 deletions
23
.github/workflows/nightly_merge.yml
vendored
Normal file
23
.github/workflows/nightly_merge.yml
vendored
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
name: Nightly Merge
|
||||
|
||||
on:
|
||||
schedule:
|
||||
- cron: '21 3 * * 3,6'
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
develop-to-main:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: 🚛 Checkout Code
|
||||
uses: actions/checkout@v2
|
||||
|
||||
- name: Merge development -> main
|
||||
uses: devmasx/merge-branch@v1.3.1
|
||||
with:
|
||||
type: now
|
||||
from_branch: develop
|
||||
target_branch: main
|
||||
github_token: ${{ secrets.TOKEN }}
|
||||
Loading…
Add table
Add a link
Reference in a new issue