Skip to content
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

ci: stale #329

Merged
merged 1 commit into from
Dec 28, 2023
Merged
Changes from all commits
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
28 changes: 28 additions & 0 deletions .github/workflows/stale.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: "Close stale issues and PRs"
on:
workflow_dispatch:
schedule:
# 01:30 UTC
- cron: "30 1 * * *"

jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v9
with:
days-before-stale: 7
days-before-close: 3
remove-stale-when-updated: true
stale-issue-label: "stale"
stale-issue-message: >
This issue has now been marked as stale and will be closed if no
further activity occurs. Thank you for your contributions ❤ .
stale-pr-message: >
Note - this is not something we expect pull requests for. Unless
you've been specifically asked by someone from PCS team please do no
submit PRs to be listed on default PCS list. You can still trade your
tokens on PCS exchange by pasting your address into the token field.

This pull request has now been marked as stale and will be closed if
no further activity occurs. Thank you for your contributions ❤ .
Loading