mirror of
https://github.com/bitnami/containers.git
synced 2026-02-11 14:37:20 +08:00
* 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>
17 lines
367 B
YAML
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 }} |