Merge pull request #342 from ReidThompson/feat/additional-ports #326
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: 'Merge master into dev' | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
nightly-merge: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v1 | |
- name: Merge master into dev | |
uses: robotology/[email protected] | |
with: | |
stable_branch: 'master' | |
development_branch: 'dev' | |
allow_ff: false | |
user_name: "Github Action" | |
user_email: "[email protected]" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |