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
1 change: 1 addition & 0 deletions .github/workflows/codegen-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ permissions:
jobs:
check:
name: "Verify generated files are up-to-date"
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ on:
jobs:
# The job MUST be called 'copilot-setup-steps' to be recognized by GitHub Copilot Agent
copilot-setup-steps:
if: github.event.repository.fork == false
runs-on: ubuntu-latest

# Set minimal permissions for setup steps
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/corrections-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ permissions:
jobs:
test:
runs-on: ubuntu-latest
if: github.event.repository.fork == false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/docs-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ permissions:
jobs:
validate-typescript:
name: "Validate TypeScript"
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand All @@ -44,6 +45,7 @@ jobs:

validate-python:
name: "Validate Python"
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -76,6 +78,7 @@ jobs:

validate-go:
name: "Validate Go"
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand All @@ -99,6 +102,7 @@ jobs:

validate-csharp:
name: "Validate C#"
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/dotnet-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ permissions:
jobs:
test:
name: ".NET SDK Tests"
if: github.event.repository.fork == false
env:
POWERSHELL_UPDATECHECK: Off
strategy:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/go-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ permissions:
jobs:
test:
name: "Go SDK Tests"
if: github.event.repository.fork == false
env:
POWERSHELL_UPDATECHECK: Off
strategy:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/nodejs-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ permissions:
jobs:
test:
name: "Node.js SDK Tests"
if: github.event.repository.fork == false
env:
POWERSHELL_UPDATECHECK: Off
strategy:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/python-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ permissions:
jobs:
test:
name: "Python SDK Tests"
if: github.event.repository.fork == false
env:
POWERSHELL_UPDATECHECK: Off
strategy:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/rust-publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ concurrency:
jobs:
publish:
name: Publish to crates.io
if: github.event.repository.fork == false
runs-on: ubuntu-latest
defaults:
run:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/rust-sdk-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ permissions:
jobs:
test:
name: "Rust SDK Tests"
if: github.event.repository.fork == false
env:
POWERSHELL_UPDATECHECK: Off
CARGO_TERM_COLOR: always
Expand Down Expand Up @@ -119,6 +120,7 @@ jobs:
# bundled-CLI release pipeline) hit them downstream.
bundle:
name: "Rust SDK Bundled CLI Build"
if: github.event.repository.fork == false
env:
CARGO_TERM_COLOR: always
RUST_BACKTRACE: 1
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/scenario-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
# ── TypeScript ──────────────────────────────────────────────────────
build-typescript:
name: "TypeScript scenarios"
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -74,6 +75,7 @@ jobs:
# ── Python ──────────────────────────────────────────────────────────
build-python:
name: "Python scenarios"
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -112,6 +114,7 @@ jobs:
# ── Go ──────────────────────────────────────────────────────────────
build-go:
name: "Go scenarios"
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -149,6 +152,7 @@ jobs:
# ── C# ─────────────────────────────────────────────────────────────
build-csharp:
name: "C# scenarios"
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand Down Expand Up @@ -191,6 +195,7 @@ jobs:
# ── Rust ────────────────────────────────────────────────────────────
build-rust:
name: "Rust scenarios"
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/verify-compiled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ permissions:

jobs:
verify:
if: github.event.repository.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down
Loading