Files
charts/.github/workflows/sync-labels.yml
Alejandro Gómez Morón 413206a72d Parametrizing support flow by using GH teams and fixing and fixing an issue with comments (#11355)
* Parametrizing support flow by getting GH members from GH teams. Also changing personal token into bitnami-bot one

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

* Changing token to retrieve team members since the rate limiting for bitnami-bot was fixed

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

* Changing token to retrieve team members since the rate limiting for bitnami-bot was fixed

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

* Changing finally when it's executed, not the token

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

* After checking with @fmulero, for org teams we need the bitnami-bot token

Signed-off-by: Alejandro Gómez <morona@vmware.com>
2022-07-29 11:31:55 +02:00

17 lines
381 B
YAML

name: '[Support] Synchronize labels from the containers repository'
on:
schedule:
# Daily
- cron: '0 3 * * *'
permissions:
issues: write
jobs:
sync-labels:
runs-on: ubuntu-latest
steps:
- uses: EndBug/label-sync@v2
with:
source-repo: bitnami/containers
delete-other-labels: false
token: ${{ secrets.GITHUB_TOKEN }}