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/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ permissions:

jobs:
sdk-benchmark:
if: github.repository == 'open-telemetry/opentelemetry-java'
permissions:
contents: write # for git push to benchmarks branch
name: Benchmark SDK
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/build-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ permissions:

jobs:
link-check:
if: github.repository == 'open-telemetry/opentelemetry-java'
uses: ./.github/workflows/reusable-link-check.yml

publish-snapshots:
if: github.repository == 'open-telemetry/opentelemetry-java'
environment: protected
runs-on: ubuntu-24.04
steps:
Expand Down Expand Up @@ -45,7 +47,7 @@ jobs:
needs:
- link-check
- publish-snapshots
if: always()
if: always() && github.repository == 'open-telemetry/opentelemetry-java'
uses: ./.github/workflows/reusable-workflow-notification.yml
with:
success: >-
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/build-tracecontext-testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ permissions:

jobs:
publish:
if: github.repository == 'open-telemetry/opentelemetry-java'
permissions:
contents: read
packages: write
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/detect-api-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ permissions: {}
jobs:
detect-api-changes:
name: Detect API surface area changes
if: github.repository == 'open-telemetry/opentelemetry-java'
runs-on: ubuntu-latest
steps:
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/fossa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ permissions:

jobs:
fossa:
if: github.repository == 'open-telemetry/opentelemetry-java'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/javadoc-crawler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ permissions:

jobs:
crawl:
if: github.repository == 'open-telemetry/opentelemetry-java'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ossf-scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ permissions:

jobs:
analysis:
if: github.repository == 'open-telemetry/opentelemetry-java'
runs-on: ubuntu-latest
permissions:
# Needed for Code scanning upload
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr-review-dashboard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ permissions:

jobs:
update-dashboard:
if: github.repository == 'open-telemetry/opentelemetry-java'
permissions:
issues: write
environment: protected
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ permissions:

jobs:
analyze:
if: github.repository == 'open-telemetry/opentelemetry-java'
environment: protected
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -46,7 +47,7 @@ jobs:
issues: write
needs:
- analyze
if: always()
if: always() && github.repository == 'open-telemetry/opentelemetry-java'
uses: ./.github/workflows/reusable-workflow-notification.yml
with:
success: ${{ needs.analyze.result == 'success' }}
2 changes: 1 addition & 1 deletion .github/workflows/survey-on-merged-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
comment-on-pr:
name: Add survey to PR if author is not a member
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true
if: github.event.pull_request.merged == true && github.repository == 'open-telemetry/opentelemetry-java'
steps:
- uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
id: otelbot-token
Expand Down
Loading