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
3 changes: 3 additions & 0 deletions .github/workflows/all-docker-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ on:
type: boolean
default: false

permissions:
contents: read

jobs:
build-go-docker-images:
if: inputs.go-ver || inputs.go-repo-ref
Expand Down
21 changes: 21 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ on: # rebuild any PRs and main branch changes
default: ''
type: string

permissions:
contents: read

concurrency:
group: ${{ github.head_ref || github.run_id }}
cancel-in-progress: true
Expand Down Expand Up @@ -185,6 +188,9 @@ jobs:
- run: dotnet test

feature-tests-ts:
permissions:
contents: read
actions: read
needs: build-go
uses: ./.github/workflows/typescript.yaml
with:
Expand All @@ -194,6 +200,9 @@ jobs:
features-repo-path: ${{ github.event.pull_request.head.repo.full_name }}

feature-tests-go:
permissions:
contents: read
actions: read
needs: build-go
uses: ./.github/workflows/go.yaml
with:
Expand All @@ -203,6 +212,9 @@ jobs:
features-repo-path: ${{ github.event.pull_request.head.repo.full_name }}

feature-tests-python:
permissions:
contents: read
actions: read
needs: build-go
uses: ./.github/workflows/python.yaml
with:
Expand All @@ -212,6 +224,9 @@ jobs:
features-repo-path: ${{ github.event.pull_request.head.repo.full_name }}

feature-tests-php:
permissions:
contents: read
actions: read
needs: build-go
uses: ./.github/workflows/php.yaml
with:
Expand All @@ -221,6 +236,9 @@ jobs:
features-repo-path: ${{ github.event.pull_request.head.repo.full_name }}

feature-tests-java:
permissions:
contents: read
actions: read
needs: build-go
uses: ./.github/workflows/java.yaml
with:
Expand All @@ -230,6 +248,9 @@ jobs:
features-repo-path: ${{ github.event.pull_request.head.repo.full_name }}

feature-tests-dotnet:
permissions:
contents: read
actions: read
needs: build-go
uses: ./.github/workflows/dotnet.yaml
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/docker-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ on:
type: boolean
default: false

permissions:
contents: read

jobs:
build-image:
name: Build ${{ inputs.lang }} docker image
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/dotnet.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ on:
type: string
required: false

permissions:
contents: read
actions: read

jobs:
test:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ on:
type: string
required: false

permissions:
contents: read
actions: read

jobs:
test:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ on:
type: string
required: false

permissions:
contents: read
actions: read

jobs:
test:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/php.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ on:
type: string
required: false

permissions:
contents: read
actions: read

jobs:
test:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ on:
type: string
required: false

permissions:
contents: read
actions: read

jobs:
test:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/typescript.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ on:
type: string
required: false

permissions:
contents: read
actions: read

jobs:
test:
runs-on: ubuntu-latest
Expand Down
Loading