Sync with upstream #1370
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: Sync with upstream | |
on: | |
schedule: | |
- cron: '0 17 * * *' # every day, by the end of the day, trigger the sync | |
workflow_dispatch: # on button click | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set timestamp | |
id: timestamp | |
run: echo "::set-output name=timestamp::$(date)" | |
- name: Sync with upstream | |
uses: shubhsherl/[email protected] | |
with: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
GITHUB_REPO: ${{ github.repository }} | |
SOURCE_REPO: "mavlink" | |
SOURCE_BRANCH: "master" | |
TARGET_BRANCH: "master" | |
TITLE: Sync with upstream master | ${{ steps.timestamp.outputs.timestamp }} | |
BODY: Sync master with upstream mavlink/mavlink:master |