mirror of
https://github.com/CringeStudios/element-desktop.git
synced 2025-01-20 00:04:59 +01:00
22 lines
543 B
YAML
22 lines
543 B
YAML
name: Sync labels
|
|
on:
|
|
workflow_dispatch: {}
|
|
schedule:
|
|
- cron: "0 2 * * *" # 2am every day
|
|
push:
|
|
branches:
|
|
- develop
|
|
paths:
|
|
- .github/labels.yml
|
|
jobs:
|
|
sync-labels:
|
|
uses: vector-im/element-meta/.github/workflows/sync-labels.yml@develop
|
|
with:
|
|
LABELS: |
|
|
vector-im/element-web
|
|
.github/labels.yml
|
|
DELETE: true
|
|
WET: true
|
|
secrets:
|
|
ELEMENT_BOT_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
|