TODO: fix workflows #1
This file contains 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
on: [push] | |
jobs: | |
test-otlp-output: | |
runs-on: ubuntu-latest | |
name: A job to test OTLP output | |
steps: | |
# To use this repository's private action, | |
# you must check out the repository | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Send data to OTLP backend | |
uses: codeboten/github-action-to-otlp@v1 | |
with: | |
endpoint: "ingest.lightstep.com:443" | |
headers: "lightstep-access-token=${{ secrets.ACCESS_TOKEN }}" | |
# TODO: Need to fix the workflow |