Skip to content

Commit

Permalink
Run Sentry workflow after CI workflow is complete (#374)
Browse files Browse the repository at this point in the history
The Sentry workflow doesn't do anything right now, but I need to merge
this PR to default branch (`main`) in order to work further on this.
  • Loading branch information
garbas authored Feb 13, 2025
1 parent 626305a commit a410620
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/sentry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: "Sentry"

on:
workflow_run:
workflows: ['CI']
types: [completed]
branches:
- "main"

jobs:

report:
name: "Report"
runs-on: "ubuntu-latest"

steps:
- name: "Setup Sentry CLI"
uses: "matbour/setup-sentry-cli@v2"
with:
token: "${{ secrets.MANAGED_FLOXENVS_SENTRY_TOKEN }}"
organization: "flox-dev"
project: "floxenvs"

# 1. fetch jobs
# 2. send them to sentry
#- name: DEBUG
# uses: mxschmitt/action-tmate@v3

0 comments on commit a410620

Please sign in to comment.