Add sync labels script and local labels file for compound specific la… #1
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
name: Sync labels | |
on: | |
workflow_dispatch: {} | |
schedule: | |
- cron: "0 1 * * *" # 1am every day | |
push: | |
branches: | |
- main | |
paths: | |
- .github/labels.yml | |
jobs: | |
sync-labels: | |
uses: element-hq/element-meta/.github/workflows/sync-labels.yml@develop | |
with: | |
LABELS: | | |
element-hq/element-meta | |
.github/labels.yml | |
DELETE: true | |
WET: true | |
secrets: | |
ELEMENT_BOT_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }} |