Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/urcomputeringpal/sentry-actions
- Owner: urcomputeringpal
- License: other
- Created: 2020-11-06T16:31:56.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-08-27T20:37:17.000Z (about 3 years ago)
- Last Synced: 2024-10-19T16:56:18.341Z (28 days ago)
- Topics: actions, cd, ci, ci-cd, distributed-tracing, github-action, github-actions, sentry, tracing
- Language: Go
- Homepage:
- Size: 127 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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```