mirror of
https://github.com/bitnami/charts.git
synced 2026-03-09 15:38:00 +08:00
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:
committed by
GitHub
parent
6aeed3c003
commit
e138c8b3d6
21
.github/workflows/clossing-issues.yml
vendored
Normal file
21
.github/workflows/clossing-issues.yml
vendored
Normal 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 }}"
|
||||
Reference in New Issue
Block a user