forked from project-chip/connectedhomeip
-
Notifications
You must be signed in to change notification settings - Fork 0
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 tc-idm-4.3-(python)
- Loading branch information
Showing
886 changed files
with
58,905 additions
and
15,548 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,7 +102,6 @@ jobs: | |
# - "-imx" | ||
- "-java" | ||
- "-k32w" | ||
- "-mbed-os" | ||
- "-nrf-platform" | ||
- "-telink" | ||
- "-ti" | ||
|
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ concurrency: | |
|
||
env: | ||
CHIP_NO_LOG_TIMESTAMPS: true | ||
|
||
jobs: | ||
|
||
qemu-esp32: | ||
|
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" |
Oops, something went wrong.