Merge pull request #294 from reservoirprotocol/feature/referral-link #69
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 branches with main | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
sync-branches: | |
runs-on: ubuntu-latest | |
name: Syncing branches | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set Git config | |
run: | | |
git config --local user.email "actions@github.com" | |
git config --local user.name "Github Actions" | |
- name: Sync testnet with main | |
run: | | |
git fetch --unshallow | |
git checkout testnets | |
git pull | |
git merge --no-ff main -m "Auto-merge main into testnet" | |
git push | |
- name: Report Status | |
uses: ravsamhq/notify-slack-action@v1 | |
if: always() | |
with: | |
status: ${{ job.status }} | |
notify_when: 'failure' | |
notification_title: 'Syncing Marketplace Branches failed' | |
message_format: '{emoji} *{workflow}* {status_message} in <{repo_url}|{repo}>' | |
footer: 'Linked to Repo <{repo_url}|{repo}>' | |
env: | |
SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }} |