bitnami-containers/.github/workflows/sync-labels.yml

18 lines
440 B
YAML

name: '[Support] Synchronize labels from the containers repository'
on:
schedule:
# Daily
- cron: '0 3 * * *'
# Remove all permissions by default
permissions: {}
jobs:
sync-labels:
runs-on: ubuntu-latest
permissions:
issues: write
steps:
- uses: EndBug/label-sync@v2
with:
source-repo: bitnami/containers
delete-other-labels: false
token: ${{ secrets.GITHUB_TOKEN }}