-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'project-chip:master' into master
- Loading branch information
Showing
604 changed files
with
23,372 additions
and
9,872 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: "Process Stale Issues and PRs" | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "30 1 * * *" | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/stale@v9 | ||
with: | ||
stale-issue-message: | ||
"This issue has been automatically marked as stale because | ||
it has not had recent activity. It will be closed if no | ||
further activity occurs. Remove stale label or comment or | ||
this will be closed in 30 days." | ||
stale-pr-message: | ||
"This pull request has been automatically marked as stale | ||
because it has not had recent activity. It will be closed | ||
if no further activity occurs. Remove stale label or | ||
comment or this will be closed in 10 days." | ||
close-issue-message: | ||
"This stale issue has been automatically closed. Thank you | ||
for your contributions." | ||
close-pr-message: | ||
"This stale pull request has been automatically closed. | ||
Thank you for your contributions." | ||
days-before-issue-stale: 30 | ||
days-before-issue-close: -1 # Don't close them for now | ||
days-before-pr-stale: 90 | ||
days-before-pr-close: 10 | ||
exempt-issue-labels: | ||
"security,blocked,cert blocker,build issue,Spec XML | ||
align,CI/CD improvements,memory" | ||
exempt-pr-labels: | ||
"security,blocked,cert blocker,build issue,Spec XML | ||
align,CI/CD improvements,memory" |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,29 @@ | ||
pull_request_rules: | ||
- name: Label conflicting pull requests | ||
description: Add a label to a pull request with conflict to spot it easily | ||
conditions: | ||
- conflict | ||
- '-closed' | ||
actions: | ||
label: | ||
toggle: | ||
- conflict | ||
- name: Automatic merge on PullApprove | ||
conditions: | ||
- or: | ||
- "check-success=pullapprove" | ||
- label="fast track" | ||
- "#approved-reviews-by>=1" | ||
- "#review-threads-unresolved=0" | ||
- "-draft" | ||
- "label!=docker" # Don't auto merge docker images | ||
- "#check-failure=0" # Don't auto merge with a failure | ||
- "#check-pending=0" # Don't auto merge with anything pending | ||
- "check-success~=Build" # Don't auto merge unless a build has succeeded, needed because above is true on a fresh PR before builds | ||
- check-success=pullapprove | ||
- label="fast track" | ||
- '#approved-reviews-by>=1' | ||
- '#review-threads-unresolved=0' | ||
- '-draft' | ||
- label!=docker | ||
- '#check-failure=0' | ||
- '#check-pending=0' | ||
- check-success~=Build | ||
- or: | ||
- "check-success=pullapprove" | ||
- "check-skipped=pullapprove" | ||
- "check-neutral=pullapprove" | ||
- check-success=pullapprove | ||
- check-skipped=pullapprove | ||
- check-neutral=pullapprove | ||
actions: | ||
merge: | ||
method: squash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.