-
Notifications
You must be signed in to change notification settings - Fork 97
Expand file tree
/
Copy pathissue_helper_resolve_bug_with_commit_ref.yml
More file actions
209 lines (181 loc) · 7.51 KB
/
Copy pathissue_helper_resolve_bug_with_commit_ref.yml
File metadata and controls
209 lines (181 loc) · 7.51 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
name: 'Issue Helper Resolve Bug (With Commit Ref)'
on:
workflow_dispatch:
inputs:
item_id:
description: 'Item ID'
type: string
required: true
commit_ref:
description: 'Commit Ref'
type: string
required: true
show_build_msg:
description: 'Version Comment'
type: choice
options:
- 'Yes'
- 'No'
more_info:
description: 'More Info'
type: string
show_more_info:
description: 'Show More Info Entry'
type: choice
options:
- 'No'
- 'Yes'
type_more_info:
description: 'More Info Type'
type: choice
options:
- 'Note'
- 'Caution'
permissions:
issues: write
concurrency:
group: lock
jobs:
issue_resolve_bug:
name: Issue - Resolve - Bug
runs-on: ubuntu-latest
steps:
# Generate App Token - https://github.com/actions/create-github-app-token
- id: app-token
uses: actions/create-github-app-token@v3
with:
client-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.APP_PRIVATE_KEY }}
- id: issue-get-state
uses: actions/github-script@v8
with:
github-token: ${{ steps.app-token.outputs.token }}
script: |
const issueNumber = context.payload.inputs.item_id;
const { data } = await github.rest.issues.get({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issueNumber
});
const isClosed = data.state === 'closed' ? 'true' : 'false';
const fs = require('fs');
fs.appendFileSync(process.env.GITHUB_ENV, `isclosed=${isClosed}\n`);
- if: ${{ github.event.inputs.show_build_msg == 'Yes' }}
id: part_2_1a
uses: oprypin/find-latest-tag@v1
with:
repository: ${{ github.repository }}
token: ${{ steps.app-token.outputs.token }}
releases-only: true
- if: |
github.event.inputs.show_build_msg == 'Yes' &&
github.event.inputs.show_more_info == 'Yes' &&
github.event.inputs.type_more_info == 'Note'
id: part_2_1b
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ steps.app-token.outputs.token }}
issue-number: ${{ github.event.inputs.item_id }}
body: |-
This item was addressed by Commit ${{ github.event.inputs.commit_ref }} towards the next RefindPlus release.
The current release version is **${{ steps.part_2_1a.outputs.tag }}**.
See [BUILDING.md](https://github.com/RefindPlusRepo/RefindPlus/blob/GOPFix/BUILDING.md) for how to access functionality ahead of releases.
> [!NOTE]
> ${{ github.event.inputs.more_info }}
Thank you for taking the time to report a problem with RefindPlus.
- if: |
github.event.inputs.show_build_msg == 'Yes' &&
github.event.inputs.show_more_info == 'Yes' &&
github.event.inputs.type_more_info == 'Caution'
id: part_2_1c
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ steps.app-token.outputs.token }}
issue-number: ${{ github.event.inputs.item_id }}
body: |
This item was addressed by Commit ${{ github.event.inputs.commit_ref }} towards the next RefindPlus release.
The current release version is **${{ steps.part_2_1a.outputs.tag }}**.
See [BUILDING.md](https://github.com/RefindPlusRepo/RefindPlus/blob/GOPFix/BUILDING.md) for how to access functionality ahead of releases.
> [!CAUTION]
> ${{ github.event.inputs.more_info }}
Thank you for taking the time to report a problem with RefindPlus.
- if: |
github.event.inputs.show_build_msg == 'Yes' &&
github.event.inputs.show_more_info == 'No'
id: part_2_1d
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ steps.app-token.outputs.token }}
issue-number: ${{ github.event.inputs.item_id }}
body: |
This item was addressed by Commit ${{ github.event.inputs.commit_ref }} towards the next RefindPlus release.
The current release version is **${{ steps.part_2_1a.outputs.tag }}**.
See [BUILDING.md](https://github.com/RefindPlusRepo/RefindPlus/blob/GOPFix/BUILDING.md) for how to access functionality ahead of releases.
Thank you for taking the time to report a problem with RefindPlus.
- if: |
github.event.inputs.show_build_msg == 'No' &&
github.event.inputs.show_more_info == 'Yes' &&
github.event.inputs.type_more_info == 'Note'
id: part_2_2a
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ steps.app-token.outputs.token }}
issue-number: ${{ github.event.inputs.item_id }}
body: |
This item was addressed by Commit ${{ github.event.inputs.commit_ref }} towards the next RefindPlus release.
> [!NOTE]
> ${{ github.event.inputs.more_info }}
Thank you for taking the time to report a problem with RefindPlus.
- if: |
github.event.inputs.show_build_msg == 'No' &&
github.event.inputs.show_more_info == 'Yes' &&
github.event.inputs.type_more_info == 'Caution'
id: part_2_2b
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ steps.app-token.outputs.token }}
issue-number: ${{ github.event.inputs.item_id }}
body: |
This item was addressed by Commit ${{ github.event.inputs.commit_ref }} towards the next RefindPlus release.
> [!CAUTION]
> ${{ github.event.inputs.more_info }}
Thank you for taking the time to report a problem with RefindPlus.
- if: |
github.event.inputs.show_build_msg == 'No' &&
github.event.inputs.show_more_info == 'No'
id: part_2_2c
uses: actions-cool/issues-helper@v3
with:
actions: 'create-comment'
token: ${{ steps.app-token.outputs.token }}
issue-number: ${{ github.event.inputs.item_id }}
body: |
This item was addressed by Commit ${{ github.event.inputs.commit_ref }} towards the next RefindPlus release.
Thank you for taking the time to report a problem with RefindPlus.
- id: part_3_1
uses: actions-cool/issues-helper@v3
with:
actions: 'add-labels'
token: ${{ steps.app-token.outputs.token }}
issue-number: ${{ github.event.inputs.item_id }}
labels: 'Bug,Resolved'
- id: part_3_2
uses: actions-cool/issues-helper@v3
with:
actions: 'remove-labels'
token: ${{ steps.app-token.outputs.token }}
issue-number: ${{ github.event.inputs.item_id }}
labels: 'Triage,Noted,No-Log,Tagged,Stale,Queries,Parked,Prorogued,Unclear,Uncertain,Unresolved,Confirmed,Known-Issue,Invalid,Incomplete,Cannot-Replicate'
- if: ${{ env.isclosed == 'false' }}
id: part_4
uses: actions-cool/issues-helper@v3
with:
actions: 'close-issue'
close-reason: 'completed'
token: ${{ steps.app-token.outputs.token }}
issue-number: ${{ github.event.inputs.item_id }}