Add support for multiple repos; add godot-docs

Also store last selected repo and branch in localStorage
This commit is contained in:
Yuri Sizov
2023-03-16 01:06:22 +01:00
parent 1bf1624f48
commit edad6b939a
6 changed files with 136 additions and 32 deletions

View File

@@ -33,8 +33,14 @@ jobs:
- name: Build the static content using npm
run: npm run build
- name: Fetch pull request data
run: npm run compose-db
- name: Fetch pull request data (godot)
run: npm run compose-db -- repo:godot
env:
GRAPHQL_TOKEN: ${{ secrets.GRAPHQL_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Fetch pull request data (godot-docs)
run: npm run compose-db -- repo:godot-docs
env:
GRAPHQL_TOKEN: ${{ secrets.GRAPHQL_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}