Nightly merge #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Nightly merge" | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
jobs: | |
nightly-merge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇ Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: 🔀 Merge master into maintenance | |
uses: robotology/[email protected] | |
with: | |
stable_branch: "master" | |
development_branch: "maintenance" | |
allow_ff: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
#- name: 🔀 Merge maintenance into devel | |
# uses: robotology/[email protected] | |
# with: | |
# stable_branch: "maintenance" | |
# development_branch: "devel" | |
# allow_ff: false | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |