-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #13 from rohan-kulkarni-25/Add-Labels
Add labels to Issues and Pull Request
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" } | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |