Skip to content

Export workflow to Honeycomb #2

Export workflow to Honeycomb

Export workflow to Honeycomb #2

Workflow file for this run

name: Export workflow to Honeycomb
on:
workflow_run:
workflows:
# The name of the workflow(s) that triggers the export
- "Build"
types: [completed]
jobs:
otel-export-newrelic:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Export workflow to Honeycomb
uses: ./
with:
otlpEndpoint: grpc://api.honeycomb.io:443/
# Example value for HONEYCOMB_OTLP_HEADERS:
# x-honeycomb-team=YOUR_API_KEY,x-honeycomb-dataset=YOUR_DATASET
otlpHeaders: ${{ secrets.HONEYCOMB_OTLP_HEADERS }}
githubToken: ${{ secrets.GITHUB_TOKEN }}
runId: ${{ github.event.workflow_run.id }}