chore: add link to the subgraph deployed on the graph network #78
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 fork for Vercel | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- develop | |
- main | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event_name == 'workflow_run' && 'main' || github.head_ref || github.ref_name }} | |
- uses: webfactory/[email protected] | |
with: | |
ssh-private-key: ${{ secrets.FORK_KEY }} | |
- name: Push to fork repo | |
env: | |
USE_SSH: true | |
run: | | |
git remote add fork [email protected]:lutralabs-bot/ees.git | |
git config --global user.email "[email protected]" | |
git config --global user.name "lutralabs-bot" | |
git push fork --force |