Skip to content

Mark stale issues and pull requests #3

Mark stale issues and pull requests

Mark stale issues and pull requests #3

Workflow file for this run

# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time.
#
# You can adjust the behavior by modifying this file.
# For more information, see:
# https://github.com/actions/stale
name: Mark stale issues and pull requests
on:
schedule:
- cron: "0 4 * * *"
workflow_dispatch:
jobs:
stale:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-stale: 14
stale-issue-label: "stale:needs-attention"
stale-issue-message: >
This issue has been automatically marked as stale because it has not had recent activity.
It will be closed in two weeks if no further activity occurs.
1Password employees have been nudged.
stale-pr-label: "stale:needs-attention"
stale-pr-message: >
This PR has been automatically marked as stale because it has not had recent activity.
It will be closed in two weeks if no further activity occurs.
1Password employees have been nudged.
days-before-close: 14
close-issue-message: >
This issue has been automatically closed due to inactivity.
Please re-open if this still requires attention.
close-pr-message: >
This pull request has been automatically closed due to inactivity.
Please re-open if it is still required.
exempt-issue-labels: "keep-alive"
exempt-pr-labels: "keep-alive"