Files
charts/.github/workflows/clossing-issues.yml
Alejandro Gómez Morón e138c8b3d6 Adding workflows for the support by using the GH board (#11245)
* Adding workflows for the support by using the GH board

Signed-off-by: Alejandro Gómez <morona@vmware.com>

* Fixing typo and GH payload for cards

Signed-off-by: Alejandro Gómez <morona@vmware.com>

* Setting properly the support team

Signed-off-by: Alejandro Gómez <morona@vmware.com>

* Adding prefix [Support] to all the Support actions

Signed-off-by: Alejandro Gómez <morona@vmware.com>

* Fixing a typo in the payload structure

Signed-off-by: Alejandro Gómez <morona@vmware.com>

* Adding auto-labeling

Signed-off-by: Alejandro Gómez <morona@vmware.com>
2022-07-20 11:03:27 +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 }}"