Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/urcomputeringpal/sentry-actions

Report GitHub Actions runs to Sentry as Transactions/Events. Allows teams to observe and debug their CI/CD pipeline like the rest of their software.
https://github.com/urcomputeringpal/sentry-actions

actions cd ci ci-cd distributed-tracing github-action github-actions sentry tracing

Last synced: 9 days ago
JSON representation

Report GitHub Actions runs to Sentry as Transactions/Events. Allows teams to observe and debug their CI/CD pipeline like the rest of their software.

Awesome Lists containing this project

README

        

![image](https://user-images.githubusercontent.com/47/100630683-7916a880-32f0-11eb-8252-e88cee41c432.png)

## Usage

```yaml
name: sentry-actions
on:
workflow_run:
# Sample completed workflows
types: [completed]
# List the names of the workflows you'd like to sample
workflows:
- docker
- test
- fail
jobs:
sentry-actions:
runs-on: ubuntu-latest
steps:
- uses: urcomputeringpal/sentry-actions@main
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
SENTRY_RELEASE: ${{ github.sha }}
SENTRY_ENVIRONMENT: production

```