[Support] Synchronize labels from the containers repository #858
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright VMware, Inc. | |
# SPDX-License-Identifier: APACHE-2.0 | |
name: '[Support] Synchronize labels from the containers repository' | |
on: | |
workflow_dispatch: | |
schedule: | |
# Daily | |
- cron: '0 3 * * *' | |
# Remove all permissions by default | |
permissions: {} | |
jobs: | |
sync-labels: | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
# Required to read issues from bitnami/containers | |
contents: read | |
steps: | |
- uses: EndBug/label-sync@52074158190acb45f3077f9099fea818aa43f97a | |
with: | |
source-repo: bitnami/containers | |
delete-other-labels: false | |
token: ${{ secrets.GITHUB_TOKEN }} |