├── .env.test.example ├── .github └── workflows │ ├── axiom.yml │ ├── build.yml │ ├── dash0.yml │ ├── honeycomb.yml │ ├── newrelic.yml │ └── private.yml ├── .gitignore ├── .husky └── pre-commit ├── .vscode ├── extensions.json └── settings.json ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── action.yml ├── biome.json ├── dist ├── index.js ├── index.js.map └── licenses.txt ├── docs └── honeycomb-example.png ├── jest.config.ts ├── package.json ├── rollup.config.ts ├── src ├── __assets__ │ ├── output_cancelled.txt │ ├── output_failed.txt │ ├── output_success.txt │ └── run.rec ├── __fixtures__ │ ├── core.ts │ └── github.ts ├── github.ts ├── index.ts ├── replay.ts ├── runner.test.ts ├── runner.ts ├── trace │ ├── job.ts │ ├── step.ts │ └── workflow.ts ├── tracer.test.ts └── tracer.ts └── tsconfig.json /.env.test.example: -------------------------------------------------------------------------------- 1 | GH_TOKEN= 2 | -------------------------------------------------------------------------------- /.github/workflows/axiom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/.github/workflows/axiom.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/dash0.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/.github/workflows/dash0.yml -------------------------------------------------------------------------------- /.github/workflows/honeycomb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/.github/workflows/honeycomb.yml -------------------------------------------------------------------------------- /.github/workflows/newrelic.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/.github/workflows/newrelic.yml -------------------------------------------------------------------------------- /.github/workflows/private.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/.github/workflows/private.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | npx lint-staged 2 | npm run build && git add dist 3 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/action.yml -------------------------------------------------------------------------------- /biome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/biome.json -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/dist/index.js.map -------------------------------------------------------------------------------- /dist/licenses.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/dist/licenses.txt -------------------------------------------------------------------------------- /docs/honeycomb-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/docs/honeycomb-example.png -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/rollup.config.ts -------------------------------------------------------------------------------- /src/__assets__/output_cancelled.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/__assets__/output_cancelled.txt -------------------------------------------------------------------------------- /src/__assets__/output_failed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/__assets__/output_failed.txt -------------------------------------------------------------------------------- /src/__assets__/output_success.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/__assets__/output_success.txt -------------------------------------------------------------------------------- /src/__assets__/run.rec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/__assets__/run.rec -------------------------------------------------------------------------------- /src/__fixtures__/core.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/__fixtures__/core.ts -------------------------------------------------------------------------------- /src/__fixtures__/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/__fixtures__/github.ts -------------------------------------------------------------------------------- /src/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/github.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/replay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/replay.ts -------------------------------------------------------------------------------- /src/runner.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/runner.test.ts -------------------------------------------------------------------------------- /src/runner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/runner.ts -------------------------------------------------------------------------------- /src/trace/job.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/trace/job.ts -------------------------------------------------------------------------------- /src/trace/step.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/trace/step.ts -------------------------------------------------------------------------------- /src/trace/workflow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/trace/workflow.ts -------------------------------------------------------------------------------- /src/tracer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/tracer.test.ts -------------------------------------------------------------------------------- /src/tracer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/src/tracer.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corentinmusard/otel-cicd-action/HEAD/tsconfig.json --------------------------------------------------------------------------------