Export OTel traces using OTLP protocol configured through OTEL_
env vars
#1140
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy pr preview | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- closed | |
paths: | |
- "docs/sources/**" | |
jobs: | |
deploy-pr-preview: | |
permissions: | |
contents: read # Clone repository. | |
id-token: write # Fetch Vault secrets. | |
pull-requests: write # Create or update pull request comments. | |
statuses: write # Update GitHub status check with deploy preview link. | |
if: "!github.event.pull_request.head.repo.fork" | |
uses: grafana/writers-toolkit/.github/workflows/deploy-preview.yml@main | |
with: | |
branch: ${{ github.head_ref }} | |
event_number: ${{ github.event.number }} | |
repo: mimir | |
sha: ${{ github.event.pull_request.head.sha }} | |
sources: | | |
[ | |
{ | |
"index_file": null, | |
"relative_prefix": "/docs/mimir/v2.15.x/", | |
"repo": "mimir", | |
"source_directory": "docs/sources/mimir", | |
"website_directory": "content/docs/mimir/v2.15.x" | |
}, | |
{ | |
"index_file": "content/docs/helm-charts/mimir-distributed/_index.md", | |
"relative_prefix": "/docs/helm-charts/mimir-distributed/latest/", | |
"repo": "mimir", | |
"source_directory": "docs/sources/helm-charts/mimir-distributed", | |
"website_directory": "content/docs/helm-charts/mimir-distributed/latest" | |
} | |
] | |
title: ${{ github.event.pull_request.title }} |