mirror of
https://github.com/bitnami/charts.git
synced 2026-02-26 07:27:53 +08:00
* 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>
21 lines
434 B
YAML
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 }}" |