mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
23 lines
446 B
YAML
23 lines
446 B
YAML
name: 'Nightly Merge'
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
|
|
jobs:
|
|
nightly-merge:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v1
|
|
|
|
- name: Nightly Merge
|
|
uses: robotology/gh-action-nightly-merge@v1.3.1
|
|
with:
|
|
stable_branch: 'master'
|
|
development_branch: 'develop'
|
|
allow_ff: true
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|