Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue 223 add yml for slack integration #224

Merged
merged 54 commits into from
Feb 28, 2025
Merged
Changes from all commits
Commits
Show all changes
54 commits
Select commit Hold shift + click to select a range
32e2d35
add yml to enable Slack channel workflow notifications
ollylucl Feb 26, 2025
a25992e
trying to get the workflow action results posted to Slack
ollylucl Feb 26, 2025
cd9913d
wip, trying to get slack/github integration working
ollylucl Feb 26, 2025
e0e4b3e
wip
ollylucl Feb 26, 2025
ab2325a
wip
ollylucl Feb 26, 2025
556f0f5
wip
ollylucl Feb 26, 2025
7732f09
wip
ollylucl Feb 26, 2025
14bdbbb
wip
ollylucl Feb 26, 2025
133cf28
wip
ollylucl Feb 26, 2025
f21e6f4
wip
ollylucl Feb 26, 2025
f40b7bd
wip
ollylucl Feb 26, 2025
e780560
wip
ollylucl Feb 26, 2025
54eb28d
wip
ollylucl Feb 26, 2025
38ff66f
wip
ollylucl Feb 26, 2025
ddd0a47
wip
ollylucl Feb 26, 2025
21c64ef
wip
ollylucl Feb 26, 2025
1651045
wip
ollylucl Feb 26, 2025
827c79a
wip
ollylucl Feb 26, 2025
de35a0a
wip
ollylucl Feb 26, 2025
bb91570
wip
ollylucl Feb 26, 2025
4539e29
wip
ollylucl Feb 26, 2025
8dd30f5
wip
ollylucl Feb 26, 2025
b4ca374
wip
ollylucl Feb 26, 2025
eeef845
wip
ollylucl Feb 26, 2025
03cb8f8
wip
ollylucl Feb 26, 2025
d72af97
wip
ollylucl Feb 26, 2025
6443add
wip
ollylucl Feb 26, 2025
f397734
wip
ollylucl Feb 26, 2025
92007dd
wip
ollylucl Feb 26, 2025
a4ba5e2
wip
ollylucl Feb 26, 2025
fbe1d4c
wip
ollylucl Feb 26, 2025
5978311
wip
ollylucl Feb 26, 2025
7b60881
wip
ollylucl Feb 26, 2025
c7a0010
wip
ollylucl Feb 26, 2025
15c7cda
wip
ollylucl Feb 26, 2025
38aaa46
wip
ollylucl Feb 26, 2025
13351bf
wip
ollylucl Feb 26, 2025
21c393e
wip
ollylucl Feb 26, 2025
181084a
wip
ollylucl Feb 26, 2025
3754ddf
wip
ollylucl Feb 26, 2025
4793095
wip
ollylucl Feb 26, 2025
ca0472a
wip
ollylucl Feb 26, 2025
fb52b7f
wip
ollylucl Feb 26, 2025
cbcb812
wip
ollylucl Feb 26, 2025
cc8fc5e
wip
ollylucl Feb 26, 2025
86f40a4
wip
ollylucl Feb 26, 2025
31c0d51
wip
ollylucl Feb 26, 2025
86fd416
wip
ollylucl Feb 28, 2025
fbe9680
wip
ollylucl Feb 28, 2025
65bc785
wip
ollylucl Feb 28, 2025
dacc7ab
wip
ollylucl Feb 28, 2025
300473a
wip
ollylucl Feb 28, 2025
a40bd94
Reset test that was intentionally altered so it failed.
ollylucl Feb 28, 2025
1504437
Remove apostrophe
ollylucl Feb 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 17 additions & 2 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,20 @@ jobs:
- name: Run jest tests
run: |
npm i
npm run test
- run: echo "🍏 This job's status is ${{ job.status }}."
npm run test
- name: The demo step has failed
if: ${{ failure()}}
uses: act10ns/slack@v2.0.0
with:
webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }}
status: ${{ job.status }}
message: 🔎 Branch ${{ github.ref }} has been pushed to the repository ${{ github.repository }},
running jest tests on this branch. 🍏 The test suite status is '${{ job.status }}'. Please check the branch for errors.
- run: echo "🍏 This job's status is '${{ job.status }}.'"
- name: slack - GitHub Actions Slack integration
uses: act10ns/slack@v2.0.0
with:
webhook-url: ${{ secrets.SLACK_WEBHOOK_URL }}
status: ${{ job.status }}
message: 🔎 Branch ${{ github.ref }} has been pushed to the repository ${{ github.repository }},
running jest tests on this branch. 🍏 The test suite status is '${{ job.status }}'.