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/autoupdate-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ on:
branches:
- combined-sdk

# We are not using github token for this workflow so best practice is to limit permissions
permissions: {}

jobs:
update_pull_requests:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/integration-tests-sdk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ on:
pull_request:
branches:
- combined-sdk

permissions:
contents: read

jobs:
core:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/integration-tests-sdkgen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ on:
pull_request:
branches:
- combined-sdk

permissions:
contents: read

jobs:
build-and-test:
runs-on: ubuntu-latest
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/notify-changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ on:
types:
- released

permissions: {}

jobs:
notify:
# This job can run on the latest Ubuntu
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/semantic-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
branches:
- combined-sdk

permissions:
contents: read

jobs:
main:
name: Validate semantic PR title
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/spell-check-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
types: [opened, synchronize, edited]
branches:
- combined-sdk

permissions:
contents: read

jobs:
spellcheck-request-title:
runs-on: ubuntu-latest
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
push:
branches:
- combined-sdk

permissions:
contents: read

jobs:
build-and-test:
runs-on: ubuntu-latest
Expand Down