Skip to content

Commit

Permalink
Added labels declaratively
Browse files Browse the repository at this point in the history
  • Loading branch information
tvvignesh committed Apr 9, 2021
1 parent 742fe86 commit 901773f
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
- color: ea0932
description: Something isn't working
name: bug
- color: bfd4f2
description: Pull requests that update a dependency file
name: dependencies
- color: 2C3E50
description: ""
name: docs
- color: 0e8a16
description: Good for newcomers
name: good first issue
- color: ECF0F1
description: ""
name: legacy
- color: 1d76db
description: ""
name: waiting for release
- color: 006B75
description: ""
name: work in progress
- color: fbca04
description: ""
name: ☂️ umbrella issue
18 changes: 18 additions & 0 deletions .github/workflows/github.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Sync labels
on:
push:
branches:
- master
paths:
- .github/labels.yml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: micnncim/action-label-syncer@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
manifest: .github/labels.yml
prune: false

0 comments on commit 901773f

Please sign in to comment.