Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/test-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,8 @@ jobs:
run: npm run build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

update-vendored-specs:
needs: test-deploy
if: failure()
uses: ./.github/workflows/update-vendored-specs.yaml
3 changes: 2 additions & 1 deletion .github/workflows/update-vendored-specs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ name: Update vendored OpenAPI specs

on:
workflow_dispatch:
workflow_call:

concurrency:
group: update-vendored-specs
Expand All @@ -26,7 +27,7 @@ jobs:
- name: Set up git identity
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
Comment thread
marythought marked this conversation as resolved.

- name: Install dependencies
run: npm ci
Expand Down
Loading