Skip to content

feat(clientapi): add operation name and errors to otel instrumentation #855

feat(clientapi): add operation name and errors to otel instrumentation

feat(clientapi): add operation name and errors to otel instrumentation #855

Workflow file for this run

name: Push Server
on:
pull_request:
paths:
- 'infrastructure/push-server/**'
- 'packages/**'
- 'docker-compose.yml'
- 'servers/push-server/**'
- 'pnpm-lock.yaml'
- 'Dockerfile'
- '.github/actions/**'
- '.github/workflows/push-server.yml'
- '.github/workflows/reuse-*.yml'
push:
branches:
- main
- dev
paths:
- 'infrastructure/push-server/**'
- 'packages/**'
- 'servers/push-server/**'
- 'pnpm-lock.yaml'
- 'Dockerfile'
- '.github/actions/**'
- '.github/workflows/push-server.yml'
- '.github/workflows/reuse-*.yml'
jobs:
test-integrations:
if: github.event_name == 'pull_request'
uses: ./.github/workflows/reuse-test-integrations.yml
with:
scope: '@server/push-server'
secrets: inherit
infrastructure:
uses: ./.github/workflows/reuse-infrastructure.yml
with:
scope: '@infrastructure/push-server'
stack-output-path: infrastructure/push-server/cdktf.out/stacks/push-server
secrets: inherit
api:
uses: ./.github/workflows/reuse-build-and-push-image.yml
needs: [infrastructure]
with:
scope: '@server/push-server'
app-path: servers/push-server
sentry-project: push-server
docker-repo-name-pattern: push-{0}-app
terraform-output: ${{needs.infrastructure.outputs.terraform-output}}
secrets: inherit
sentry:
if: github.ref == 'refs/heads/dev' || github.ref == 'refs/heads/main'
uses: ./.github/workflows/reuse-sentry-release.yml
needs: [api]
with:
sentry-project: push-server
sentry-environment: ${{ github.ref == 'refs/heads/main' && 'production' || 'development' }}
secrets: inherit