-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1186 from alandtse/fix_ci
Fix ci
- Loading branch information
Showing
7 changed files
with
93 additions
and
78 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,19 +1,44 @@ | ||
--- | ||
name: Mark stale issues and pull requests | ||
|
||
on: | ||
schedule: | ||
- cron: "30 1 * * *" | ||
- cron: "30 1 * * *" | ||
|
||
jobs: | ||
stale: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/stale@v1 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
stale-issue-message: 'The issue is stale and will be closed shortly.' | ||
stale-pr-message: 'The PR is stale and will be closed shortly.' | ||
stale-issue-label: 'no-issue-activity' | ||
stale-pr-label: 'no-pr-activity' | ||
- uses: actions/stale@v3 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
exempt-issue-labels: 'help-wanted' | ||
exempt-pr-labels: 'help-wanted' | ||
stale-issue-message: 'The issue has received no activity for 60 days and will be closed in a week.' | ||
stale-pr-message: 'The PR has received no activity for 60 days and will be closed in a week.' | ||
stale-issue-label: 'no-issue-activity' | ||
stale-pr-label: 'no-pr-activity' | ||
- uses: actions/stale@v3 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
days-before-stale: 21 | ||
days-before-close: -1 | ||
only-labels: 'feature' | ||
stale-issue-message: >- | ||
This feature request has been labelled as *help wanted* since | ||
there has been no activity in the last 3 weeks. It will not be | ||
closed automatically. | ||
stale-issue-label: 'help-wanted' | ||
- uses: actions/stale@v3 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
days-before-stale: 21 | ||
days-before-close: -1 | ||
only-labels: 'bug' | ||
stale-issue-message: >- | ||
This bug report has been labelled as *help wanted* since | ||
there has been no activity in the last 3 weeks. It will not be | ||
closed automatically. | ||
stale-issue-label: 'help-wanted' |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
extends: default | ||
|
||
rules: | ||
document-start: disable | ||
indentation: | ||
spaces: 2 | ||
truthy: | ||
allowed-values: ['true', 'false', 'on'] | ||
line-length: | ||
max: 120140 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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