-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'documentation' into main
- Loading branch information
Showing
10 changed files
with
34 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ on: | |
jobs: | ||
hlint: | ||
name: Hlint - Check for code sanity | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout project contents 📡 | ||
uses: actions/checkout@v4 | ||
|
@@ -19,7 +19,7 @@ jobs: | |
uses: rwe/[email protected] | ||
weeder: | ||
name: Weeder - Check dead code | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- name: Checkout project contents 📡 | ||
uses: actions/checkout@v4 | ||
|
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,29 +1,29 @@ | ||
# The purpose of this job is to close stale issues and pull requests when | ||
# there has been no activity on them at all for some period of time. First, | ||
# a warning is given that the issue will be closed. If noone reacts, then | ||
# the issue will be automatically closed. | ||
# a warning is given that the issue will be closed. If noone reacts, then | ||
# the issue will be automatically closed. | ||
# | ||
# The motivations behind this is the idea that each open issue has a maintenance | ||
# cost. Even if nothing happens, every now and then open issues are browsed to | ||
# cost. Even if nothing happens, every now and then open issues are browsed to | ||
# see if something can be done. If there are a lot of open issues, looking through | ||
# them obviously costs more time and brainpower. Closing them automatically after | ||
# some time will weed out issues that have hardely any chance (if at all) of getting done. | ||
# some time will weed out issues that have hardely any chance (if at all) of getting done. | ||
# | ||
# Documentation: https://github.com/marketplace/actions/close-stale-issues | ||
# | ||
name: 'Close stale issues and PRs' | ||
name: "Close stale issues and PRs" | ||
on: | ||
schedule: | ||
- cron: '30 1 * * *' | ||
- cron: "30 1 * * *" | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/stale@v6 | ||
with: | ||
stale-issue-message: 'This issue is stale because it has been open 5 years with no activity. Remove stale label or comment or this will be closed in 30 days.' | ||
stale-pr-message: 'This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days.' | ||
close-issue-message: 'This issue was closed because it has been stalled for 30 days with no activity.' | ||
stale-issue-message: "This issue is stale because it has been open 5 years with no activity. Remove stale label or comment or this will be closed in 30 days." | ||
stale-pr-message: "This PR is stale because it has been open 45 days with no activity. Remove stale label or comment or this will be closed in 10 days." | ||
close-issue-message: "This issue was closed because it has been stalled for 30 days with no activity." | ||
days-before-stale: 1825 # (5 years) | ||
days-before-close: 30 | ||
days-before-close: 30 |
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