Skip to content

Commit 9428105

Browse files
authored
Merge pull request #632 from Azure/canary
Canary
2 parents 11ce4a0 + 992cd6f commit 9428105

File tree

5 files changed

+609
-168
lines changed

5 files changed

+609
-168
lines changed
+177-32
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
1+
# ===========================================================================
2+
# GitHub Repository Issue and Pull Request Management Policy
3+
# ===========================================================================
14
id:
25
name: GitOps.PullRequestIssueManagement
36
description: Handlers for when an issue is first opened
4-
owner:
7+
owner: Arc Jumpstart
58
resource: repository
69
disabled: false
710
where:
811
configuration:
912
resourceManagementConfiguration:
13+
# ===========================================================================
14+
# EVENT RESPONDER TASKS
15+
# Defines automated actions triggered by specific GitHub events
16+
# ===========================================================================
1017
eventResponderTasks:
18+
# ---------------------------------------------------------------------------
19+
# PULL REQUEST MANAGEMENT
20+
# Handles PR creation, updates, and empty PRs
21+
# ---------------------------------------------------------------------------
1122
- description: >-
1223
When a PR is opened/updated, if no files are modified
1324
* Close the issue
@@ -33,41 +44,94 @@ configuration:
3344
3445
- closePullRequest
3546
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
4648
if:
47-
- payloadType: Issues
49+
- payloadType: Pull_Request
4850
- isAction:
4951
action: Opened
5052
then:
5153
- addReply:
5254
reply: >-
5355
Hello @${issueAuthor},
5456
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).
5759
58-
- description: When a PR is opened, post a message to the author
60+
# ---------------------------------------------------------------------------
61+
# NEW ISSUE MANAGEMENT
62+
# Handles initial triage and labeling of new issues
63+
# ---------------------------------------------------------------------------
64+
- description: When an issue is opened, Identifiy if the issue title contains the word "bug" or "feature" and post a message to the author
5965
if:
60-
- payloadType: Pull_Request
66+
- payloadType: Issues
6167
- isAction:
6268
action: Opened
6369
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},
67111
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).
70130
131+
# ---------------------------------------------------------------------------
132+
# ISSUE LIFECYCLE MANAGEMENT
133+
# Handles issue closing, reopening, and duplicate detection
134+
# ---------------------------------------------------------------------------
71135
- description: Clear labels when an issue is closed
72136
triggerOnOwnActions: false
73137
if:
@@ -78,9 +142,41 @@ configuration:
78142
- removeLabel:
79143
label: Needs-Triage
80144
- removeLabel:
81-
label: Needs-Attention
145+
label: Needs-Attention
146+
- removeLabel:
147+
label: Needs-Author-Feedback
82148
- addLabel:
83149
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
84180

85181
- description: Add needs attention label to reopened issues
86182
triggerOnOwnActions: false
@@ -90,15 +186,53 @@ configuration:
90186
action: Reopened
91187
then:
92188
- removeLabel:
93-
label: Issue-Addressed
189+
label: Issue-Addressed
190+
- removeLabel:
191+
label: Resolution-Duplicate
94192
- addLabel:
95193
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.
96199
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!
214+
215+
- closeIssue
216+
- removeLabel:
217+
label: Needs-Triage
218+
- removeLabel:
219+
label: Needs-Attention
220+
- removeLabel:
221+
label: Needs-Feedback-Hub
222+
- removeLabel:
223+
label: Needs-Author-Feedback
224+
- addLabel:
225+
label: Resolution-Duplicate
226+
227+
# ===========================================================================
228+
# SCHEDULED SEARCHES
229+
# Periodic tasks that run on defined schedules
230+
# ===========================================================================
97231
scheduledSearches:
98232
- description: Close stale issues
99233
frequencies:
100234
- daily:
101-
time: 1:0
235+
time: 1:0 # Runs at 1:00 AM daily
102236
filters:
103237
- isIssue
104238
- isOpen
@@ -107,42 +241,53 @@ configuration:
107241
- hasLabel:
108242
label: No-Recent-Activity
109243
- noActivitySince:
110-
days: 21
244+
days: 21 # 3 weeks of inactivity
111245
actions:
112246
- closeIssue
247+
113248
- description: Add no recent activity label to issues
114249
frequencies:
115250
- hourly:
116-
hour: 6
251+
hour: 6 # Runs at 6:00 every hour
117252
filters:
118253
- isIssue
119254
- isOpen
120255
- hasLabel:
121256
label: Needs-Author-Feedback
122257
- noActivitySince:
123-
days: 7
258+
days: 7 # 1 week of inactivity
124259
- isNotLabeledWith:
125260
label: No-Recent-Activity
126261
actions:
127262
- addLabel:
128263
label: No-Recent-Activity
129264
- 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+
131270
- description: '[Resolve Workflow] Close Addressed Issues'
132271
frequencies:
133272
- hourly:
134-
hour: 6
273+
hour: 6 # Runs at 6:00 every hour
135274
filters:
136275
- isIssue
137276
- isOpen
138277
- hasLabel:
139278
label: Issue-Addressed
140279
- noActivitySince:
141-
days: 7
280+
days: 7 # 1 week of inactivity
142281
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+
145289
- closeIssue
146290

291+
# Configuration for handling failures or success events
147292
onFailure:
148293
onSuccess:

docs/azure_arc_jumpstart/azure_arc_servers/day2/arc_vm_extension_customscript_arm/_index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ As mentioned, this deployment will leverage ARM templates.
121121
git clone https://github.com/microsoft/azure_arc.git
122122
```
123123

124-
- 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)
125125

126126
![Screenshot parameters file](./07.png)
127127

docs/azure_jumpstart_ag/contoso_motors/cleanup/_index.md

-2
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,6 @@ To clean up your deployment, simply delete the resource group using Azure CLI or
1717

1818
![Screenshot showing group delete from Azure portal](./img/portal_delete.png)
1919

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-
2220
## Next steps
2321

2422
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

Comments
 (0)