This is done periodically as the Github Action's infrastructure reads files from the repos main branch (`stable`) where as changes are made to `develop`'s ".github" which should be made live ASAP. This does not affect the gem5 build or any configuration scripts, only how testing is performed via GitHub and other info used by Github (e.g., ".github/ISSUE_TEMPLATE" which outlines the templates for creating issues via our GitHub issues page.
22 lines
806 B
YAML
22 lines
806 B
YAML
---
|
|
# This workflow file contains miscellaneous tasks to manage the repository.
|
|
name: Utils for Repository
|
|
on:
|
|
schedule:
|
|
- cron: 30 1 * * *
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
# This job runs the stale action to close issues that have been inactive for 30 days.
|
|
# It is scheduled to run every day at 1:30 AM UTC.
|
|
close-stale-issues:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@v8.0.0
|
|
with:
|
|
close-issue-message: This issue is being closed because it has been inactive waiting for response for 30 days. If this is still an issue,
|
|
please open a new issue and reference this one.
|
|
days-before-stale: 21
|
|
days-before-close: 7
|
|
any-of-labels: needs details
|