You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a PR is opened/updated, if no files are modified
13
24
* Close the issue
@@ -33,41 +44,94 @@ configuration:
33
44
34
45
- closePullRequest
35
46
36
-
- description: Add Needs-Triage to new issues
37
-
if:
38
-
- payloadType: Issues
39
-
- isAction:
40
-
action: Opened
41
-
then:
42
-
- addLabel:
43
-
label: Needs-Triage
44
-
45
-
- description: When an issue is opened, post a message to the author
47
+
- description: When a PR is opened, post a message to the author
46
48
if:
47
-
- payloadType: Issues
49
+
- payloadType: Pull_Request
48
50
- isAction:
49
51
action: Opened
50
52
then:
51
53
- addReply:
52
54
reply: >-
53
55
Hello @${issueAuthor},
54
56
55
-
Thank you for reporting this issue, A team member will review and triage it soon. All issues are evaluated by the Arc Jumpstart team to determine next steps.
56
-
By submitting this issue request, you agree that your contributions will be licensed under the project's [MIT license](https://github.com/microsoft/azure_arc/blob/main/LICENSE-CODE) and you confirm that you've read and will abide by our [Code of Conduct](https://github.com/microsoft/azure_arc/blob/main/CODE_OF_CONDUCT.md).
57
+
Thank you for your pull request, A team member will review it soon. All pull requests are validated by the Arc Jumpstart team and must pass all validation checks before being merged.
58
+
By submitting this pull request, you agree that your contributions will be licensed under the [MIT license](https://github.com/microsoft/azure_arc/blob/main/LICENSE-CODE) license and you confirm that you've read and will abide by our [Code of Conduct](https://github.com/microsoft/azure_arc/blob/main/CODE_OF_CONDUCT.md).
57
59
58
-
- description: When a PR is opened, post a message to the author
- description: When an issue is opened, Identifiy if the issue title contains the word "bug" or "feature" and post a message to the author
59
65
if:
60
-
- payloadType: Pull_Request
66
+
- payloadType: Issues
61
67
- isAction:
62
68
action: Opened
63
69
then:
64
-
- addReply:
65
-
reply: >-
66
-
Hello @${issueAuthor},
70
+
# Add Needs-Triage label to new issues
71
+
- addLabel:
72
+
label: Needs-Triage
73
+
- if:
74
+
# Identifiy if the issue title contains the word "arcbox"
75
+
- titleContains:
76
+
pattern: "(?i)arcbox"
77
+
isRegex: true
78
+
then:
79
+
- addLabel:
80
+
label: ArcBox
81
+
- if:
82
+
# Identifiy if the issue title contains the word "hcibox"
83
+
- titleContains:
84
+
pattern: "(?i)hcibox"
85
+
isRegex: true
86
+
then:
87
+
- addLabel:
88
+
label: HCIBox
89
+
- if:
90
+
# Identifiy if the issue title contains the word "agora"
91
+
- titleContains:
92
+
pattern: "(?i)agora"
93
+
isRegex: true
94
+
then:
95
+
- addLabel:
96
+
label: Agora
97
+
98
+
- if:
99
+
# Identifiy if the issue title contains the word "bug"
100
+
- titleContains:
101
+
pattern: "(?i)bug"
102
+
isRegex: true
103
+
then:
104
+
# Add Bug-Issue label to issues with the word "bug" in the title
105
+
- addLabel:
106
+
label: Bug-Issue
107
+
# Add a reply to the issue author
108
+
- addReply:
109
+
reply: >-
110
+
Hello @${issueAuthor},
67
111
68
-
Thank you for your pull request, A team member will review it soon. All pull requests are validated by the Arc Jumpstart team and must pass all validation checks before being merged.
69
-
By submitting this pull request, you agree that your contributions will be licensed under the [MIT license](https://github.com/microsoft/azure_arc/blob/main/LICENSE-CODE) license and you confirm that you've read and will abide by our [Code of Conduct](https://github.com/microsoft/azure_arc/blob/main/CODE_OF_CONDUCT.md).
112
+
Thank you for reporting this issue, A team member will review and triage it soon. All issues are evaluated by the Arc Jumpstart team to determine next steps.
113
+
By submitting this issue request, you agree that your contributions will be licensed under the project's [MIT license](https://github.com/microsoft/azure_arc/blob/main/LICENSE-CODE) and you confirm that you've read and will abide by our [Code of Conduct](https://github.com/microsoft/azure_arc/blob/main/CODE_OF_CONDUCT.md).
114
+
- if:
115
+
# Identifiy if the issue title contains the word "feature"
116
+
- titleContains:
117
+
pattern: "(?i)feature"
118
+
isRegex: true
119
+
then:
120
+
# Add Feature-Request label to issues with the word "feature" in the title
121
+
- addLabel:
122
+
label: Feature-Request
123
+
# Add a reply to the feature request author
124
+
- addReply:
125
+
reply: >-
126
+
Hello @${issueAuthor},
127
+
128
+
Thank you for your feature request, A team member will review it soon. All pull requests are validated by the Arc Jumpstart team and must pass all validation checks before being merged.
129
+
By submitting this pull request, you agree that your contributions will be licensed under the [MIT license](https://github.com/microsoft/azure_arc/blob/main/LICENSE-CODE) license and you confirm that you've read and will abide by our [Code of Conduct](https://github.com/microsoft/azure_arc/blob/main/CODE_OF_CONDUCT.md).
- description: Clear labels when an issue is closed
72
136
triggerOnOwnActions: false
73
137
if:
@@ -78,9 +142,41 @@ configuration:
78
142
- removeLabel:
79
143
label: Needs-Triage
80
144
- removeLabel:
81
-
label: Needs-Attention
145
+
label: Needs-Attention
146
+
- removeLabel:
147
+
label: Needs-Author-Feedback
82
148
- addLabel:
83
149
label: Issue-Addressed
150
+
- addReply:
151
+
reply: >-
152
+
Hello @${issueAuthor},
153
+
154
+
We've closed this issue because it has been addressed. If you believe further discussion is needed, please add a comment "`/unresolve`" to reopen the issue.
155
+
156
+
- description: Reopen unresolved issues
157
+
triggerOnOwnActions: false
158
+
if:
159
+
- payloadType: Issue_Comment
160
+
- and:
161
+
- commentContains:
162
+
pattern: "(?i)unresolve"
163
+
isRegex: True
164
+
then:
165
+
- removeLabel:
166
+
label: Issue-Addressed
167
+
- removeLabel:
168
+
label: Resolution-Duplicate
169
+
- removeLabel:
170
+
label: No-Recent-Activity
171
+
- addLabel:
172
+
label: Needs-Author-Feedback
173
+
- addReply:
174
+
reply: >-
175
+
Hello @${issueAuthor},
176
+
177
+
We've reopened this issue because you marked it as unresolved. We need more information from you or we identified it is not completely resolved.
178
+
179
+
- reopenIssue
84
180
85
181
- description: Add needs attention label to reopened issues
86
182
triggerOnOwnActions: false
@@ -90,15 +186,53 @@ configuration:
90
186
action: Reopened
91
187
then:
92
188
- removeLabel:
93
-
label: Issue-Addressed
189
+
label: Issue-Addressed
190
+
- removeLabel:
191
+
label: Resolution-Duplicate
94
192
- addLabel:
95
193
label: Needs-Attention
194
+
- addReply:
195
+
reply: >-
196
+
Hello @${issueAuthor},
197
+
198
+
We've reopened this issue because we need more information from you or we identified it is not completely resolved.
96
199
200
+
- description: Add Resolution-Duplicate label to issues or PRs that are identified as duplicates
201
+
triggerOnOwnActions: false
202
+
if:
203
+
- payloadType: Issue_Comment
204
+
- and:
205
+
- commentContains:
206
+
pattern: "(?i)duplicat(e|ed|ing)?"
207
+
isRegex: True
208
+
then:
209
+
- addReply:
210
+
reply: >-
211
+
Hello @${issueAuthor},
212
+
213
+
We've identified this as a duplicate of another issue or PR that already exists. This specific instance is being closed in favor of the linked issue. Please add your 👍 to the other issue to raise its priority. Thanks for your contribution!
- description: Add no recent activity label to issues
114
249
frequencies:
115
250
- hourly:
116
-
hour: 6
251
+
hour: 6# Runs at 6:00 every hour
117
252
filters:
118
253
- isIssue
119
254
- isOpen
120
255
- hasLabel:
121
256
label: Needs-Author-Feedback
122
257
- noActivitySince:
123
-
days: 7
258
+
days: 7# 1 week of inactivity
124
259
- isNotLabeledWith:
125
260
label: No-Recent-Activity
126
261
actions:
127
262
- addLabel:
128
263
label: No-Recent-Activity
129
264
- addReply:
130
-
reply: Hi, we're sending this friendly reminder because we haven't heard back from you in a while and we need more information about this issue to help address it. Please be sure to give us your input within the next **7 days**. If we don't hear back from you within **14 days** of this comment the issue will be automatically closed. Thank you!
265
+
reply: >-
266
+
Hello @${issueAuthor},
267
+
268
+
We're sending this friendly reminder because we haven't heard back from you in a while and we need more information about this issue to help address it. Please be sure to give us your input within the next **7 days**. If we don't hear back from you within **14 days** of this comment the issue will be automatically closed. Thank you!
269
+
131
270
- description: '[Resolve Workflow] Close Addressed Issues'
132
271
frequencies:
133
272
- hourly:
134
-
hour: 6
273
+
hour: 6# Runs at 6:00 every hour
135
274
filters:
136
275
- isIssue
137
276
- isOpen
138
277
- hasLabel:
139
278
label: Issue-Addressed
140
279
- noActivitySince:
141
-
days: 7
280
+
days: 7# 1 week of inactivity
142
281
actions:
143
-
- addReply:
144
-
reply: Hi @${issueAuthor}, since you haven’t asked that we “`/unresolve`” the issue, we’ll close this out. If you believe further discussion is needed, please add a comment “`/unresolve`” to reopen the issue.
282
+
- addReply:
283
+
reply: >-
284
+
285
+
Hello @${issueAuthor},
286
+
287
+
Since you haven't asked that we "`/unresolve`" the issue, we'll close this out. If you believe further discussion is needed, please add a comment "`/unresolve`" to reopen the issue.
288
+
145
289
- closeIssue
146
290
291
+
# Configuration for handling failures or success events
- Edit the extensions parameters file for [*Windows*](https://github.com/microsoft/azure_arc/blob/main/azure_arc_servers_jumpstart/archive/extensions/arm/customscript-templatewindows.parameters.json) or for [*Linux*](https://github.com/microsoft/azure_arc/blob/main/azure_arc_servers_jumpstart/archive/extensions/arm/customscript-templatelinux.parameters.json)
124
+
- Edit the extensions parameters file for [*Windows*](https://github.com/microsoft/azure_arc/blob/main/azure_arc_servers_jumpstart/extensions/arm/customscript-templatewindows.parameters.json) or for [*Linux*](https://github.com/microsoft/azure_arc/blob/main/azure_arc_servers_jumpstart/extensions/arm/customscript-templatelinux.parameters.json)
Copy file name to clipboardexpand all lines: docs/azure_jumpstart_ag/contoso_motors/cleanup/_index.md
-2
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,6 @@ To clean up your deployment, simply delete the resource group using Azure CLI or
17
17
18
18

19
19
20
-
> **Note:** If you have manually configured Defender for Cloud, please refer to the [dedicated page](../arc_defender_servers/#cleanup) to clean up Defender for Cloud resources.
21
-
22
20
## Next steps
23
21
24
22
If you still having issues with the deployment, please refer to the [Troubleshooting](../troubleshooting/) section. Otherwise, if you have additional questions or feedback, please refer to the [FAQ](../../../faq/) section.
0 commit comments