Sha256: 9daf2b9c39749c45ac13aab7b7323f861472137659c78edc30f131994785a993
Contents?: true
Size: 1.2 KB
Versions: 2
Compression:
Stored size: 1.2 KB
Contents
name: Close stale issues on: schedule: - cron: '0 0 * * *' # Runs at 00:00 UTC every day jobs: stale: runs-on: ubuntu-latest steps: - uses: actions/stale@v9 with: # Issues stale-issue-message: 'This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.' close-issue-message: 'This issue was closed because it has been stale for 30 days with no activity.' days-before-issue-stale: 60 days-before-issue-close: 30 # Pull Requests stale-pr-message: 'This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.' close-pr-message: 'This pull request was closed because it has been stale for 30 days with no activity.' days-before-pr-stale: 60 days-before-pr-close: 30 # General settings exempt-issue-labels: 'pinned,security' exempt-pr-labels: 'pinned,security' stale-issue-label: 'stale' stale-pr-label: 'stale'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
synvert-core-2.2.2 | .github/workflows/stale.yml |
synvert-core-2.2.1 | .github/workflows/stale.yml |