mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-01-19 00:37:02 +00:00
Add config details for the stale action (#3870)
This commit is contained in:
parent
83a24cb06d
commit
3d7704f0bf
16
.github/workflows/stale.yml
vendored
16
.github/workflows/stale.yml
vendored
|
@ -1,7 +1,7 @@
|
||||||
name: Mark stale issues and pull requests
|
name: Mark/Close stale issues and pull requests
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: "0 0 * * *"
|
- cron: "0 * * * *" # Run every hour
|
||||||
jobs:
|
jobs:
|
||||||
stale:
|
stale:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -9,15 +9,23 @@ jobs:
|
||||||
- uses: actions/stale@v3
|
- uses: actions/stale@v3
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
days-before-stale: 30
|
||||||
|
days-before-close: 7
|
||||||
stale-issue-message: >
|
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. Thank you
|
||||||
|
for your contributions.
|
||||||
|
close-issue-message: >
|
||||||
Please reopen this issue once you add more information and updates here.
|
Please reopen this issue once you add more information and updates here.
|
||||||
If this is not the case and you need some help, feel free to seek help
|
If this is not the case and you need some help, feel free to seek help
|
||||||
from our [Gitter](https://gitter.im/TheAlgorithms) or ping one of the
|
from our [Gitter](https://gitter.im/TheAlgorithms) or ping one of the
|
||||||
reviewers. Thank you for your contributions!
|
reviewers. Thank you for your contributions!
|
||||||
stale-pr-message: >
|
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. Thank you
|
||||||
|
for your contributions.
|
||||||
|
close-pr-message: >
|
||||||
Please reopen this pull request once you commit the changes requested
|
Please reopen this pull request once you commit the changes requested
|
||||||
or make improvements on the code. If this is not the case and you need
|
or make improvements on the code. If this is not the case and you need
|
||||||
some help, feel free to seek help from our [Gitter](https://gitter.im/TheAlgorithms)
|
some help, feel free to seek help from our [Gitter](https://gitter.im/TheAlgorithms)
|
||||||
or ping one of the reviewers. Thank you for your contributions!
|
or ping one of the reviewers. Thank you for your contributions!
|
||||||
stale-issue-label: 'no-issue-activity'
|
|
||||||
stale-pr-label: 'no-pr-activity'
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user