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' of https://github.com/MarlinFirmware/Marlin into…
… 2.0.x # Conflicts: # .github/issue_template.md # README.md
- Loading branch information
Showing
835 changed files
with
52,645 additions
and
17,851 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 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,35 +1,11 @@ | ||
<!-- | ||
# NO SUPPORT REQUESTS PLEASE | ||
|
||
Have you read Marlin's Code of Conduct? By filing an Issue, you are expected to comply with it, including treating everyone with respect: https://github.com/MarlinFirmware/Marlin/blob/bugfix-2.0.x/.github/code_of_conduct.md | ||
Do you want to ask a question? Are you looking for support? Please don't post here. Support Requests posted here will be automatically closed! | ||
|
||
Do you want to ask a question? Are you looking for support? Please don't post here. Instead use one of the following options: | ||
Instead use one of the following options: | ||
|
||
- The Marlin Firmware forum at https://reprap.org/forum/list.php?415 | ||
- The MarlinFirmware Facebook Group at https://www.facebook.com/groups/1049718498464482/ | ||
- The MarlinFirmware Discord Server at https://discord.gg/n5NJ59y. | ||
|
||
Before filing an issue be sure to test the latest "bugfix" branch to see whether the issue is already addressed. | ||
--> | ||
|
||
### Description | ||
|
||
<!-- Description of the bug or requested feature --> | ||
|
||
### Steps to Reproduce | ||
|
||
<!-- If this is a Bug Report, please describe the steps needed to reproduce the issue --> | ||
|
||
1. [First Step] | ||
2. [Second Step] | ||
3. [and so on...] | ||
|
||
**Expected behavior:** [What you expect to happen] | ||
|
||
**Actual behavior:** [What actually happens] | ||
|
||
#### Additional Information | ||
|
||
* Include a ZIP file containing your `Configuration.h` and `Configuration_adv.h` files. | ||
* Provide pictures or links to videos that clearly demonstrate the issue. | ||
* See [How Can I Contribute](#how-can-i-contribute) for additional guidelines. |
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 has had no activity in the last 30 days. Please add a reply if you want to keep this issue active, otherwise it will be automatically closed within 7 days.' | ||
days-before-stale: 30 | ||
days-before-close: 7 | ||
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 }}" |
Oops, something went wrong.