Files
containers/.github/workflows/sync-labels.yml
Alejandro Gómez Morón b07e517e77 [bitnami/*] Changing token to avoid rate limiting on GITHUB_TOKEN (#1154)
* Automated PRs created by the bitnami-bot should be ignored by any workflow related to support activities.

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>

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

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>
2022-07-29 11:10:28 +02:00

17 lines
367 B
YAML

name: '[Support] Synchronize labels from the vms 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/vms
delete-other-labels: false
token: ${{ secrets.GITHUB_TOKEN }}