Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update policies #528

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions .github/policies/scheduled-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,18 @@ where:
configuration:
resourceManagementConfiguration:
scheduledSearches:
- description: Push to main (scheduled publish)
- description: Push to main (scheduled sync)
frequencies:
- daily:
time: 23:00
time: 1:00
- daily:
time: 9:00
- daily:
time: 17:00
filters: []
actions:
- createPullRequest:
head: smoke-test
base: main
title: Sync smoke-test to main
body: "Please don't squash-merge this PR."
title: Merge smoke-test into main
body: Please don't squash-merge this PR.
21 changes: 21 additions & 0 deletions .github/policies/stale-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Stale issues
description: Close needs-more-info issues that haven't had a response in 14 days
resource: repository
where:
configuration:
resourceManagementConfiguration:
scheduledSearches:
- frequencies:
- daily:
time: 12:00
filters:
- isIssue
- isOpen
- hasLabel:
label: needs-more-info
- noActivitySince:
days: 14
actions:
- addReply:
reply: This issue has been automatically closed due to no response from the original author. Feel free to reopen it if you have more information that can help us investigate the issue further.
- closeIssue
Loading