This repository has been archived by the owner on Oct 16, 2024. It is now read-only.
update-partners #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: update-partners | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * 1" # Midnight on monday | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout main | |
uses: actions/checkout@v3 # checkout the repository content to github runner | |
- name: Install dependencies | |
run: yarn install | |
- name: Compare latest wormhole | |
run: | | |
yarn run update-partners | |
git config user.name 'Github Bot' | |
git config user.email '[email protected]' | |
git add . | |
git commit -m "Update latest partners' token list" | |
echo "DIFF_COUNT=$(echo git whatchanged -1 --format=oneline | wc -l)" >> $GITHUB_ENV | |
- name: Create Pull Request | |
if: always() && env.DIFF_COUNT > 0 | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.PAT }} | |
title: "Partner token list update" | |
reviewers: meijiao | |
branch: "new-partner-token-list-update-${{ github.sha }}" | |
base: main | |
delete-branch: true |