Creating a scheduled job to sync labels fron the bitnami/containers repository (#11039)

Signed-off-by: Alejandro Gómez <morona@vmware.com>
This commit is contained in:
Alejandro Gómez Morón
2022-07-06 09:20:58 +02:00
committed by GitHub
parent d4ef1ead76
commit a1e902828c

17
.github/workflows/sync-labels.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: 'Synchronize labels from the containers 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/containers
delete-other-labels: false
token: ${{ secrets.GITHUB_TOKEN }}