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>
This commit is contained in:
Alejandro Gómez Morón
2022-07-20 11:03:27 +02:00
committed by GitHub
parent 6aeed3c003
commit e138c8b3d6
9 changed files with 277 additions and 1 deletions

21
.github/workflows/clossing-issues.yml vendored Normal file
View File

@@ -0,0 +1,21 @@
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 }}"