Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Sync labels #328

Merged
merged 1 commit into from
Oct 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/labels.yml
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not sure what this is doing, but I trust it is correct 👍

Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
- name: "A-Component"
description: "Component implementation"
color: "bfd4f2"
- name: "A-Design-Tokens"
color: "bfd4f2"
- name: "A-Developer-Experience"
color: "B3C648"
- name: "A-Documentation"
color: "bfd4f2"
- name: "A-Icons"
color: "bfd4f2"
- name: "A-Process"
color: "D67373"
- name: "P-Android"
description: "Platform Android"
color: "7D3A0A"
- name: "P-Figma"
description: "Platform Figma"
color: "7D3A0A"
- name: "P-iOS"
description: "Platform iOS"
color: "7D3A0A"
- name: "P-Web"
description: "Platform Web"
color: "7D3A0A"
- name: "T-Component-Design"
color: "98e6ae"
- name: "T-Component-Development"
color: "98e6ae"
- name: "T-New-Component"
description: "First implementations of components."
color: "98e6ae"
- name: "T-Other"
description: "Questions, user support, anything else"
color: "98e6ae"
21 changes: 21 additions & 0 deletions .github/workflows/sync_labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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 }}