Sync Upstream #5
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
on: | |
schedule: | |
- cron: '0 * * * *' | |
workflow_dispatch: # click the button | |
jobs: | |
sync_with_upstream: | |
runs-on: ubuntu-latest | |
name: Sync master with upstream latest | |
steps: | |
# Step 1: run a standard checkout action, provided by github | |
- name: Checkout master | |
uses: actions/checkout@v2 | |
with: | |
ref: master | |
# Step 2: run this sync action - specify the upstream repo, upstream branch to sync with, and target sync branch | |
- name: Pull (Fast-Forward) upstream changes | |
id: sync | |
uses: aormsby/[email protected] | |
with: | |
upstream_repository: ipverse/asn-info | |
upstream_branch: master | |
target_branch: master | |
git_pull_args: --merge | |
# Step 3: Display a message if 'sync' step had new commits (simple test) | |
- name: Check for new commits | |
if: steps.sync.outputs.has_new_commits | |
run: echo "There were new commits." | |
# Step 4: Print a helpful timestamp for your records (not required, just nice) | |
- name: Timestamp | |
run: date |