forked from MarlinFirmware/Marlin
-
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 '2.0.x' into P3Steel-Testing
- Loading branch information
Showing
14 changed files
with
176 additions
and
87 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,27 @@ | ||
# | ||
# close-stale.yml | ||
# Close open issues after a period of inactivity | ||
# | ||
|
||
name: Close Stale Issues | ||
|
||
on: | ||
schedule: | ||
- cron: "22 1 * * *" | ||
|
||
jobs: | ||
stale: | ||
name: Close Stale Issues | ||
if: github.repository == 'MarlinFirmware/Marlin' | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/stale@v3 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity. Remove stale label / comment or this will be closed in 5 days.' | ||
days-before-stale: 30 | ||
days-before-close: 5 | ||
stale-issue-label: 'stale-closing-soon' | ||
exempt-issue-labels: 'T: Feature Request' |
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,32 @@ | ||
# | ||
# lock-closed.yml | ||
# Lock closed issues after a period of inactivity | ||
# | ||
|
||
name: Lock Closed Issues | ||
|
||
on: | ||
schedule: | ||
- cron: '0 1/13 * * *' | ||
|
||
jobs: | ||
lock: | ||
name: Lock Closed Issues | ||
if: github.repository == 'MarlinFirmware/Marlin' | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: dessant/lock-threads@v2 | ||
with: | ||
github-token: ${{ github.token }} | ||
process-only: 'issues' | ||
issue-lock-inactive-days: '60' | ||
issue-exclude-created-before: '' | ||
issue-exclude-labels: 'no-locking' | ||
issue-lock-labels: '' | ||
issue-lock-comment: > | ||
This issue has been automatically locked since there | ||
has not been any recent activity after it was closed. | ||
Please open a new issue for related bugs. | ||
issue-lock-reason: '' |
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,22 @@ | ||
# | ||
# unlock-reopened.yml | ||
# Unlock an issue whenever it is re-opened | ||
# | ||
|
||
name: "Unlock reopened issue" | ||
|
||
on: | ||
issues: | ||
types: [reopened] | ||
|
||
jobs: | ||
unlock: | ||
name: Unlock Reopened | ||
if: github.repository == 'MarlinFirmware/Marlin' | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: OSDKDev/unlock-issues@v1.1 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Where have all the configurations gone? | ||
|
||
## https://github.com/MarlinFirmware/Configurations/archive/release-2.0.5.2.zip | ||
## https://github.com/MarlinFirmware/Configurations/archive/release-2.0.5.zip |
Oops, something went wrong.