Skip to content

Stale Issue and PR Management #41

Stale Issue and PR Management

Stale Issue and PR Management #41

Workflow file for this run

name: Stale Issue and PR Management
on:
schedule:
- cron: "0 2 * * *"
workflow_dispatch:
jobs:
stale-issues:
runs-on: ubuntu-latest
if: github.repository == 'cubrid-labs/cubrid-rs'
steps:
- name: Stale issues and PRs
uses: actions/stale@v10
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: "This issue has been marked as stale because it has not had recent activity. It will be closed in 7 days if no further activity occurs."
stale-pr-message: "This pull request has been marked as stale because it has not had recent activity. It will be closed in 14 days if no further activity occurs."
stale-issue-label: "stale"
stale-pr-label: "stale"
exempt-issue-labels: "pinned,security,enhancement,bug,documentation"
exempt-pr-labels: "pinned,security,enhancement,bug,documentation,wip"
days-before-stale: 60
days-before-close: 7
close-issue: true
close-pr: false