Skip to content
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
14 changes: 14 additions & 0 deletions .github/labels.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
- name: 'area/compute'
color: 'C5DEF5'

- name: 'area/iam'
color: 'C5DEF5'

- name: 'area/networking'
color: 'C5DEF5'

- name: 'area/physical'
color: 'C5DEF5'

- name: 'area/storage'
color: 'C5DEF5'
23 changes: 23 additions & 0 deletions .github/workflows/sync-labels.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Sync labels
on:
workflow_dispatch:

permissions:
issues: write

jobs:
labels:
runs-on: ubuntu-latest

steps:
- uses: actions/setup-node@395ad3262231945c25e8478fd5baf05154b1d79f
with:
node-version: 18.x
- run: npm install -g github-label-sync@v3.0.0
shell: bash
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8
with:
sparse-checkout: .github/labels.yaml
- run: |
github-label-sync --access-token ${{ github.token }} --labels .github/labels.yaml ${{ github.repository }}
shell: bash
Loading