8000 CI: Add stale PR action by dsaxton · Pull Request #36336 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

CI: Add stale PR action #36336

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Sep 15, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Nicer wording
  • Loading branch information
dsaxton committed Sep 13, 2020
commit 9765d43a69dac09fd086d88b15d6c3ebcfd6c1ca
4 changes: 2 additions & 2 deletions .github/workflows/stale-pr.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "Manage stale pull requests"
name: "Stale PRs"
on:
schedule:
# * is a special character in YAML so you have to quote this string
Expand All @@ -11,7 +11,7 @@ jobs:
- uses: actions/stale@v3
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-pr-message: "This pull request is stale because it has been open for 30 days with no activity. Please update to prevent this from being closed."
stale-pr-message: "This pull request is stale because it has been open for thirty days with no activity. Please update to prevent this from being closed (you can always reopen later). If you need help don't hesitate to contact one of the maintainers."
days-before-stale: 30
days-before-close: -1
debug-only: true
0