Files
containers/.github/workflows/sync-labels.yml
Alejandro Gómez 8370fb616c Creating a scheduled job to sync labels from the bitnami/vms
Signed-off-by: Alejandro Gómez <morona@vmware.com>
2022-07-05 13:26:58 +02:00

17 lines
357 B
YAML

name: 'Synchronize labels from the vms repository'
on:
schedule:
# Daily
- cron: '0 1 * * *'
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 }}