Skip to content

Automated Repository Maintenance #14

Automated Repository Maintenance

Automated Repository Maintenance #14

Workflow file for this run

name: Automated Repository Maintenance
on:
schedule:
- cron: '0 0 * * *' # Runs automatically every night at midnight
workflow_dispatch: # Allows you to run it manually with a button click
jobs:
stale-cleanup:
runs-on: ubuntu-latest
steps:
- name: Close Inactive and Stale Issues
uses: actions/stale@v9
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
stale-issue-message: '馃憢 This issue hasn鈥檛 seen any activity for a while. It will be closed automatically soon to keep the bioinformatics workspace clean!'
days-before-stale: 30
days-before-close: 7