Skip to content

Commit

Permalink
Setup action to nightly merge master into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
META-DREAMER authored and dan13ram committed Jun 13, 2021
1 parent ac6e7b9 commit a35d486
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/nightly-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
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/[email protected]
with:
stable_branch: 'master'
development_branch: 'develop'
allow_ff: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a35d486

Please sign in to comment.