Skip to content
Open
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
10 changes: 10 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,13 @@ jobs:
github-token: ${{ secrets.GITHUB_TOKEN }}
benchmark-data-dir-path: "benchmarks"
auto-push: true

workflow-notification:
permissions:
issues: write
needs:
- sdk-benchmark
if: always()
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@7c49790392da7de86fdb4bb968446f9cb8461eb8 # v0.3.1
with:
success: ${{ needs.sdk-benchmark.result == 'success' }}
5 changes: 2 additions & 3 deletions .github/workflows/build-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,12 @@ jobs:

workflow-notification:
permissions:
contents: read
issues: write
needs:
- link-check
- publish-snapshots
if: always() && github.repository == 'open-telemetry/opentelemetry-java'
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@70659e38ed50e743a5cce6fb40ba336c40154aa1 # v0.3.0
if: always()
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@7c49790392da7de86fdb4bb968446f9cb8461eb8 # v0.3.1
with:
success: >-
${{
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/build-tracecontext-testsuite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,13 @@ jobs:
context: integration-tests/tracecontext/docker
push: true
tags: ghcr.io/open-telemetry/java-test-containers:w3c-tracecontext-testsuite

workflow-notification:
permissions:
issues: write
needs:
- publish
if: always()
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@7c49790392da7de86fdb4bb968446f9cb8461eb8 # v0.3.1
with:
success: ${{ needs.publish.result == 'success' }}
12 changes: 11 additions & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,4 +64,14 @@ jobs:
- name: Perform CodeQL analysis
uses: github/codeql-action/analyze@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0
with:
category: "/language:${{matrix.language}}"
category: "/language:${{matrix.language}}"

workflow-notification:
permissions:
issues: write
needs:
- analyze
if: always() && github.event_name == 'schedule'
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@7c49790392da7de86fdb4bb968446f9cb8461eb8 # v0.3.1
with:
success: ${{ needs.analyze.result == 'success' }}
10 changes: 10 additions & 0 deletions .github/workflows/fossa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,13 @@ jobs:
with:
api-key: ${{secrets.FOSSA_API_KEY}}
team: OpenTelemetry

workflow-notification:
permissions:
issues: write
needs:
- fossa
if: always()
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@7c49790392da7de86fdb4bb968446f9cb8461eb8 # v0.3.1
with:
success: ${{ needs.fossa.result == 'success' }}
10 changes: 10 additions & 0 deletions .github/workflows/issue-management-stale-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,13 @@ jobs:
This has been automatically marked as stale because it has been marked
as needing author feedback and has not had any activity for 7 days.
It will be closed if no further activity occurs within 7 days of this comment.

workflow-notification:
permissions:
issues: write
needs:
- stale
if: always()
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@7c49790392da7de86fdb4bb968446f9cb8461eb8 # v0.3.1
with:
success: ${{ needs.stale.result == 'success' }}
10 changes: 10 additions & 0 deletions .github/workflows/javadoc-crawler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,13 @@ jobs:
run: ./gradlew :javadoc-crawler:crawl
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}

workflow-notification:
permissions:
issues: write
needs:
- crawl
if: always()
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@7c49790392da7de86fdb4bb968446f9cb8461eb8 # v0.3.1
with:
success: ${{ needs.crawl.result == 'success' }}
10 changes: 10 additions & 0 deletions .github/workflows/ossf-scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,13 @@ jobs:
uses: github/codeql-action/upload-sarif@99df26d4f13ea111d4ec1a7dddef6063f76b97e9 # v4.37.0
with:
sarif_file: results.sarif

workflow-notification:
permissions:
issues: write
needs:
- analysis
if: always()
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@7c49790392da7de86fdb4bb968446f9cb8461eb8 # v0.3.1
with:
success: ${{ needs.analysis.result == 'success' }}
24 changes: 0 additions & 24 deletions .github/workflows/reusable-open-issue-on-failure.yml

This file was deleted.

5 changes: 2 additions & 3 deletions .github/workflows/sonatype-guide-dependency-audit-daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,11 +43,10 @@ jobs:

workflow-notification:
permissions:
contents: read
issues: write
needs:
- analyze
if: always() && github.repository == 'open-telemetry/opentelemetry-java'
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@70659e38ed50e743a5cce6fb40ba336c40154aa1 # v0.3.0
if: always()
uses: open-telemetry/shared-workflows/.github/workflows/workflow-failure-issue.yml@7c49790392da7de86fdb4bb968446f9cb8461eb8 # v0.3.1
with:
success: ${{ needs.analyze.result == 'success' }}
Loading