Skip to content

Commit

Permalink
github-action: use wildcards for discovering all the workflows (#3583)
Browse files Browse the repository at this point in the history
  • Loading branch information
v1v authored Jan 31, 2024
1 parent f524594 commit ab195fe
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/opentelemetry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
# Look up results at https://ela.st/oblt-ci-cd-stats.
# There will be one service per GitHub repository, including the org name, and one Transaction per Workflow.
name: OpenTelemetry Export Trace

on:
workflow_run:
workflows: [ "*" ]
types: [completed]

permissions:
contents: read

jobs:
otel-export-trace:
runs-on: ubuntu-latest
steps:
- uses: elastic/apm-pipeline-library/.github/actions/opentelemetry@current
with:
vaultUrl: ${{ secrets.VAULT_ADDR }}
vaultRoleId: ${{ secrets.VAULT_ROLE_ID }}
vaultSecretId: ${{ secrets.VAULT_SECRET_ID }}

0 comments on commit ab195fe

Please sign in to comment.