diff --git a/.github/workflows/stable.yaml b/.github/workflows/stale.yaml similarity index 74% rename from .github/workflows/stable.yaml rename to .github/workflows/stale.yaml index 1782317af..90074608b 100644 --- a/.github/workflows/stable.yaml +++ b/.github/workflows/stale.yaml @@ -3,7 +3,7 @@ on: schedule: - cron: '30 1 * * *' # Runs at 1:30am every day -# `stable` label will be added to issues and PRs that have been inactive for 120 days +# `stale` label will be added to issues and PRs that have been inactive for 120 days # Close stale issues and PRs after 14 days of inactivity permissions: contents: read @@ -18,7 +18,7 @@ jobs: - uses: actions/stale@v9 with: repo-token: ${{ secrets.GITHUB_TOKEN }} - stale-issue-message: 'This issue is stale because it has been open for 120 days with no activity. After 14 days of inactivity, it will be closed. Remove the `stable` label to prevent this issue from being closed.' - stale-pr-message: 'This pull request is stale because it has been open for 120 days with no activity. After 14 days of inactivity, it will be closed. Remove the `stable` label to prevent this issue from being closed.' + stale-issue-message: 'This issue is stale because it has been open for 120 days with no activity. After 14 days of inactivity, it will be closed. Remove the `stale` label to prevent this issue from being closed.' + stale-pr-message: 'This pull request is stale because it has been open for 120 days with no activity. After 14 days of inactivity, it will be closed. Remove the `stale` label to prevent this issue from being closed.' days-before-stale: 120 days-before-close: 14