-
Notifications
You must be signed in to change notification settings - Fork 20
47 lines (44 loc) · 1.1 KB
/
Notify-Convention-Change.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: Notify Members of Convention Change
on:
pull_request_target:
paths:
- docs/Coding-Conventions.md
types:
- opened
- reopened
jobs:
org-check:
name: Check GitHub Organization
if: github.repository_owner == 'ni'
runs-on: ubuntu-20.04
steps:
- name: Noop
run: "true"
notify:
runs-on: ubuntu-latest
needs: org-check
steps:
- uses: actions/checkout@main
- name: Comment on PR
uses: thollander/actions-comment-pull-request@v1
with:
message: |
Thank you for contributing! :wave:
Since this changes the Coding Conventions, I'll @-mention the appropriate NI engineers.
@alejandro5042
@DavidCurtiss
@irwand
@jryckman
@kcuzner
@mshafer-NI
@neilvana
@nethrasuresh
@pakdev
@rtzoeller
@sbethur
@stick152
@tkrebes
@Adithyak1998
@innagarc
@ShibaniRout
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}