This repository was archived by the owner on Oct 22, 2024. It is now read-only.
Sync labels #6
This file contains hidden or 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: | |
| - develop | |
| 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 }} |