Fixing version within main library module #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Stale issue handler" | |
on: | |
workflow_dispatch: | |
schedule: | |
cron: "0 */12 * * *" # Run the job every 12 hours | |
jobs: | |
stale: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
stale-issue-message: 'This issue is stale because it has been open 60 or more days with no activity. Remove stale label or comment or this will be closed in 7 days.' | |
close-issue-message: 'This stale issue is being closed, because it has been open for 60 or more days with no further activity. If you feel this is in error, please add a comment or re-open the issue.' | |
days-before-stale: 60 | |
days-before-close: 7 | |
close-issue-label: Stale-Closed | |
operations-per-run: 250 |