We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1882f03 commit ed87865Copy full SHA for ed87865
.github/workflows/ci.yml
@@ -26,5 +26,18 @@ jobs:
26
ruby-version: 3.3.0
27
- name: Install dependencies
28
run: bundle install
29
+
30
- name: Run tests
- run: bundle exec rspec test/integration
31
+ run: bundle exec rspec test/integration
32
33
+ - name: Report Status
34
+ if: always()
35
+ uses: ravsamhq/notify-slack-action@v1
36
+ with:
37
+ status: ${{ job.status }}
38
+ notify_when: "failure,warnings"
39
+ notification_title: "Repo: *{repo}*"
40
+ message_format: "{emoji} *{status_message}* in <{repo_url}|{repo}@{branch}> on <{commit_url}|{commit_sha}>"
41
+ footer: "<{run_url}|View Full Run on GitHub>"
42
+ env:
43
+ SLACK_WEBHOOK_URL: ${{ secrets.ACTION_MONITORING_SLACK }}
0 commit comments