mirror of
https://github.com/bitnami/charts.git
synced 2026-03-05 06:47:25 +08:00
* Adding workflows for the support by using the GH board Signed-off-by: Alejandro Gómez <morona@vmware.com> * Fixing typo and GH payload for cards Signed-off-by: Alejandro Gómez <morona@vmware.com> * Setting properly the support team Signed-off-by: Alejandro Gómez <morona@vmware.com> * Adding prefix [Support] to all the Support actions Signed-off-by: Alejandro Gómez <morona@vmware.com> * Fixing a typo in the payload structure Signed-off-by: Alejandro Gómez <morona@vmware.com> * Adding auto-labeling Signed-off-by: Alejandro Gómez <morona@vmware.com>
17 lines
381 B
YAML
17 lines
381 B
YAML
name: '[Support] 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 }} |