Skip to content

Commit de9120d

Browse files
committed
more inclusive issue-notify
1 parent 618a34e commit de9120d

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/issue-notify.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: issue-notify
2+
3+
on:
4+
issues:
5+
types: [opened,assigned,closed,reopened]
6+
issue_comment:
7+
types: [created]
8+
pull_request:
9+
pull_request_review:
10+
types: [submitted]
11+
push:
12+
branches:
13+
- '*'
14+
tags-ignore:
15+
- '*'
16+
create:
17+
jobs:
18+
notify:
19+
runs-on: ubuntu-latest
20+
continue-on-error: true
21+
if: ${{ always() }}
22+
steps:
23+
- uses: PDLPorters/devops/github-actions/irc-notifications@master
24+
with:
25+
target-notifications: true

0 commit comments

Comments
 (0)