-
Notifications
You must be signed in to change notification settings - Fork 89
59 lines (51 loc) · 1.56 KB
/
ci.yaml
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
48
49
50
51
52
53
54
55
56
57
58
59
on: pull_request
jobs:
test_comment_pr:
name: (NRT) Comment PR
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- name: Checkout
uses: actions/checkout@v3
- name: (BEFORE) Setup test cases
run: echo '**Content of file referenced with absolute path**' > /tmp/foobar.txt
- name: Comment PR with message
uses: ./
with:
message: |
Current branch is `${{ github.head_ref }}`.
_(execution **${{ github.run_id }}** / attempt **${{ github.run_attempt }}**)_
comment_tag: nrt_message
reactions: eyes, rocket
mode: recreate
- name: Comment PR with message that will be deleted
uses: ./
with:
message: |
This PR is being built...
comment_tag: nrt_message_delete
reactions: eyes
mode: delete
- name: Comment PR with file
uses: ./
with:
filePath: README.md
comment_tag: nrt_file
reactions: eyes, rocket
mode: recreate
- name: Comment PR with file (absolute path)
uses: ./
with:
filePath: /tmp/foobar.txt
comment_tag: nrt_file_absolute
reactions: eyes, rocket
mode: recreate
- name: Do not comment PR if not exists
uses: ./
with:
message: Should not be printed
comment_tag: nrt_create_if_not_exists
create_if_not_exists: false
- name: (AFTER) Setup test cases
run: rm /tmp/foobar.txt