Skip to content

Commit

Permalink
Merge pull request #13 from rohan-kulkarni-25/Add-Labels
Browse files Browse the repository at this point in the history
Add labels to Issues and Pull Request
  • Loading branch information
himanshu007-creator authored Sep 20, 2021
2 parents f91ae9a + 6d94a82 commit d9f9f41
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/labels.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[
{ "name": "good first issue", "color": "7f0799" },
{ "name": "help wanted", "color": "7f0799" },
{ "name": "duplicate", "color": "7f0799" },
{ "name": "⛔️ status: discarded", "color": "eeeeee" },
{ "name": "✨ goal: improvement", "color": "ffffff" },
{ "name": "❓ talk: question", "color": "f9bbe5" },
{ "name": "⭐ goal: addition", "color": "ffffff" },
{ "name": "🏁 status: ready for dev", "color": "cccccc" },
{ "name": "💬 talk: discussion", "color": "f9bbe5" },
{ "name": "💻 aspect: code", "color": "04338c" },
{ "name": "📄 aspect: text", "color": "04338c" },
{ "name": "🔒 staff only", "color": "7f0799" },
{ "name": "🕹 aspect: interface", "color": "04338c" },
{ "name": "🚦 status: awaiting triage", "color": "333333" },
{ "name": "🚧 status: blocked", "color": "999999" },
{ "name": "🛠 goal: fix", "color": "ffffff" },
{ "name": "🟥 priority: critical", "color": "b60205" },
{ "name": "🟧 priority: high", "color": "ff9f1c" },
{ "name": "🟨 priority: medium", "color": "ffcc00" },
{ "name": "🟩 priority: low", "color": "cfda2c" },
{ "name": "🤖 aspect: dx", "color": "04338c" },
{ "name": "🧹 status: ticket work required", "color": "666666" },
{ "name": "🔢 points: 1", "color": "62A1A6" },
{"name": "🔢 points: 2", "color": "62A1A6" },
{ "name": "🔢 points: 3", "color": "62A1A6" },
{ "name": "🔢 points: 5", "color": "62A1A6" },
{ "name": "🔢 points: 8", "color": "62A1A6" }
]
20 changes: 20 additions & 0 deletions .github/workflows/labels.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Import open source standard labels

on:
push:
branches: [ main ]

jobs:
labels:

runs-on: ubuntu-latest

steps:
- uses: actions/setup-node@v2
with:
node-version: '14'
- uses: EddieHubCommunity/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
owner-name: ${{ github.repository_owner }}
repository-name: ${{ github.event.repository.name }}

0 comments on commit d9f9f41

Please sign in to comment.