Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
# licenses/APL2.txt.

name: ci
permissions:
contents: read

on:
push:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/openapi-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,18 @@
# licenses/APL2.txt.

name: openapi-pr
permissions:
contents: read
pull-requests: write

on:
pull_request:
# Only run when we change an API spec
paths:
- 'docs/api/**'
- .redocly.yaml
- .yamllint.yml
- github/workflows/openapi-pr.yml
branches:
- 'master'
- 'main'
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/openapi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,17 @@
# licenses/APL2.txt.

name: openapi
permissions:
contents: read

on:
push:
# Only run when we change an API spec
paths:
- 'docs/api/**'
- .redocly.yaml
- .yamllint.yml
- github/workflows/openapi.yml
branches:
- 'master'
- 'main'
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/service.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@
# licenses/APL2.txt.

name: service
permissions:
contents: read

on:
push:
# Only run when we modify service files
paths:
- 'service/**'
- 'integration-test/**'
- 'github/workflows/service.yml'
branches:
- 'main'
- 'release/*'
Expand Down
Loading