-
-
Notifications
You must be signed in to change notification settings - Fork 506
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added auto-label.json and updated issues.yml (#2601)
* added auto-label.json and updated issues.yml * named the issues.yml to issue.yml * improved the sync of issue.yml
- Loading branch information
1 parent
6e33d49
commit fd8a315
Showing
2 changed files
with
26 additions
and
3 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,17 @@ | ||
{ | ||
labelsSynonyms: { | ||
dependencies: ["dependencies", "dependabot", "dependency"], | ||
security: ["security"], | ||
"good first issue": [ | ||
"security", | ||
"dependencies", | ||
"dependabot", | ||
"dependency", | ||
"layout", | ||
"screen", | ||
"design", | ||
"figma", | ||
], | ||
"ui/ux": ["layout", "screen", "design", "figma"], | ||
}, | ||
} |
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# | ||
# NOTE! | ||
# | ||
# Please read the README.md file in this directory that defines what should | ||
# Please read the README.md file in this directory that defines what should | ||
# be placed in this file | ||
# | ||
############################################################################## | ||
|
@@ -12,18 +12,24 @@ | |
name: Issues Workflow | ||
on: | ||
issues: | ||
types: ['opened'] | ||
types: ["opened"] | ||
jobs: | ||
Opened-issue-label: | ||
name: Adding Issue Label | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
sparse-checkout: | | ||
.github/workflows/auto-label.json5 | ||
sparse-checkout-cone-mode: false | ||
|
||
- uses: Renato66/[email protected] | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
ignore-comments: true | ||
default-labels: '["unapproved"]' | ||
|
||
Issue-Greeting: | ||
name: Greeting Message to User | ||
runs-on: ubuntu-latest | ||
|