-
-
Notifications
You must be signed in to change notification settings - Fork 512
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trigger codecov manually after Test WFs are done
- Loading branch information
Showing
2 changed files
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: CodeCov | ||
|
||
on: | ||
workflow_run: | ||
workflows: | ||
- "sentry-delayed_job Test" | ||
- "sentry-opentelemetry Test" | ||
- "sentry-rails Test" | ||
- "sentry-raven Test" | ||
- "sentry-resque Test" | ||
- "sentry-ruby Test" | ||
- "sentry-sidekiq Test" | ||
types: | ||
- completed | ||
branches: | ||
- master | ||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
release: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run.conclusion == 'success' }} | ||
steps: | ||
- name: Codecov | ||
uses: codecov/codecov-action@v5.3.1 | ||
|
||
- name: Trigger Codecov | ||
run: codecovcli send-notifications |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
codecov: | ||
disable_default_path_fixes: true | ||
notify: | ||
manual_trigger: true | ||
ignore: | ||
- "**/spec/**" | ||
comment: | ||
|