mirror of
https://github.com/bitnami/charts.git
synced 2026-02-19 03:17:10 +08:00
* 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>
17 lines
381 B
YAML
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 }} |