Sha256: 7e16e3f317c2931940ed1ac5a7c8e6c62e9cb64387a47c341ffa061ef01e802f

Contents?: true

Size: 1.22 KB

Versions: 13

Compression:

Stored size: 1.22 KB

Contents

# Configuration for stale action https://github.com/actions/stale
name: 'Close stale issues and PRs'
on:
  schedule:
    - cron: '0 14 * * *'

jobs:
  stale:
    runs-on: ubuntu-latest

    permissions:
      issues: write
      pull-requests: write

    steps:
      - uses: actions/stale@v9
        with:
          ascending: true
          operations-per-run: 100
          stale-pr-message: 'As of today this PR is stale. If you want to keep it apply an update otherwise it will be closed in 7 days.'
          close-pr-message: 'PR was closed because of missing activity.'
          days-before-pr-stale: 90
          days-before-pr-close: 7
          stale-issue-message: >
            This issue is stale because it has been open for 90 days with no activity. It will be closed if no further action occurs in 7 days.
          close-issue-message: |
            We are closing this issue because it has been inactive for a few months.
            This probably means that it is not reproducible or it has been fixed in a newer version.
            If it's an enhancement and hasn't been taken on since it was submitted, then it seems other issues have taken priority.
          days-before-issue-stale: 90
          days-before-issue-close: 7

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
record_store-8.0.5 .github/workflows/stale-action-handling.yml
record_store-8.0.4 .github/workflows/stale-action-handling.yml
record_store-8.0.3 .github/workflows/stale-action-handling.yml
record_store-8.0.2 .github/workflows/stale-action-handling.yml
record_store-8.0.1 .github/workflows/stale-action-handling.yml
record_store-8.0.0 .github/workflows/stale-action-handling.yml
record_store-7.1.1 .github/workflows/stale-action-handling.yml
record_store-7.1.0 .github/workflows/stale-action-handling.yml
record_store-7.0.1 .github/workflows/stale-action-handling.yml
record_store-7.0.0 .github/workflows/stale-action-handling.yml
record_store-6.7.2 .github/workflows/stale-action-handling.yml
record_store-6.7.1 .github/workflows/stale-action-handling.yml
record_store-6.7.0 .github/workflows/stale-action-handling.yml