Update Graphdoc #1117
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 Graphdoc | |
on: | |
create: | |
branches: | |
- 'update-graphdoc/*' | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.GH_PAT }} | |
- run: | | |
npm install | |
git config user.email "[email protected]" | |
git config user.name "Vydia" | |
git fetch origin update_graphdoc | |
git checkout update_graphdoc | |
npm run generate-graphdoc | |
git add . | |
git commit -m "update graphdoc" | |
git push origin update_graphdoc --force |