Files
containers/.github/workflows/clossing-issues.yml
Alejandro Gómez Morón cb2eb144e4 Adding support for GH dashboard (#187)
Signed-off-by: Alejandro Gómez <morona@vmware.com>
2022-07-20 18:19:48 +02:00

21 lines
434 B
YAML

name: '[Support] Close Solved issues'
on:
schedule:
# Hourly
- cron: '0 * * * *'
permissions:
issues: write
repository-projects: write
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v4
with:
any-of-labels: 'solved'
stale-issue-label: 'solved'
days-before-stale: 0
days-before-close: 0
repo-token: "${{ secrets.GITHUB_TOKEN }}"