-
Notifications
You must be signed in to change notification settings - Fork 89
80 lines (69 loc) · 2.17 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
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: ./
id: nrt-message
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: Create a comment to delete it after
uses: ./
with:
message: |
This message will be deleted
comment-tag: nrt-message-delete
reactions: eyes
- name: Delete comment
uses: ./
with:
comment-tag: nrt-message-delete
mode: delete
- name: Comment PR with message that will be deleted
uses: ./
with:
message: |
This PR is being built...
comment-tag: nrt-message-delete-on-completion
reactions: eyes
mode: delete-on-completion
- name: Comment PR with file
uses: ./
with:
file-path: README.md
comment-tag: nrt-file
reactions: eyes, rocket
mode: recreate
- name: Comment PR with file (absolute path)
uses: ./
with:
file-path: /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: Check outputs
run: |
echo "id : ${{ steps.nrt-message.outputs.id }}"
echo "body : ${{ steps.nrt-message.outputs.body }}"
echo "html-url : ${{ steps.nrt-message.outputs.html-url }}"
- name: (AFTER) Setup test cases
run: rm /tmp/foobar.txt