Sha256: f2df304bd5f1eeba6c41f87b29030d2f717b1ecfb356f673252107d6a457c681
Contents?: true
Size: 1.75 KB
Versions: 32
Compression:
Stored size: 1.75 KB
Contents
# 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: '31 3 * * *' # randomly chosen time of day workflow_dispatch: jobs: stale: runs-on: ubuntu-latest permissions: issues: write pull-requests: write steps: - uses: actions/stale@v4 with: repo-token: ${{ secrets.GITHUB_TOKEN }} days-before-issue-stale: 90 days-before-pr-stale: 30 days-before-close: 10 stale-issue-message: |- This issue seems inactive. If it's still relevant, please add a comment saying so. Otherwise, take no action. → If there's no activity within a week, then a bot will automatically close this. Thanks for helping to improve Shopify's dev tooling and experience. stale-pr-message: |- This PR seems inactive. If it's still relevant, please add a comment saying so. Otherwise, take no action. → If there's no activity within a week, then a bot will automatically close this. Thanks for helping to improve Shopify's dev tooling and experience. stale-issue-label: 'no-issue-activity' stale-pr-label: 'no-pr-activity' ascending: true # The math seems a bit fuzzy, but this should amount to a max of 50 issues daily. # But then the same issues get checked first so we don't end up progressing too quickly until we can close what we started. # Hopefully https://github.com/actions/stale/issues/692 will be closed and fix some of this mess. operations-per-run: 200
Version data entries
32 entries across 32 versions & 1 rubygems