-
-
Notifications
You must be signed in to change notification settings - Fork 557
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
30 changed files
with
428 additions
and
55 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,80 @@ | ||
filters: | ||
- label: 'goal: new-feature' | ||
regexs: | ||
- /\bfeat\b/ | ||
- /feature/i | ||
events: [pull_request] | ||
targets: [title] | ||
|
||
- label: 'documentation' | ||
regexs: | ||
- /docs/i | ||
events: [pull_request] | ||
targets: [title] | ||
|
||
- label: 'bug' | ||
regexs: | ||
- /bug/i | ||
events: [pull_request] | ||
targets: [title] | ||
- label: 'bug' | ||
regexs: | ||
- /fix/i | ||
events: [pull_request] | ||
targets: [title] | ||
|
||
- label: 'chore' | ||
regexs: | ||
- /category/i | ||
events: [pull_request] | ||
targets: [title] | ||
- label: 'goal: new-category' | ||
regexs: | ||
- /category/i | ||
events: [pull_request] | ||
targets: [title] | ||
|
||
- label: 'chore' | ||
regexs: | ||
- /\blink\b/ | ||
- /link/i | ||
events: [pull_request] | ||
targets: [title] | ||
- label: 'goal: new-link' | ||
regexs: | ||
- /\blink\b/ | ||
- /link/i | ||
events: [pull_request] | ||
targets: [title] | ||
|
||
- label: 'chore' | ||
regexs: | ||
- /description/i | ||
events: [pull_request] | ||
targets: [title] | ||
|
||
- label: 'chore' | ||
regexs: | ||
- /chore/i | ||
events: [pull_request] | ||
targets: [title] | ||
|
||
- label: 'goal: build' | ||
regexs: | ||
- /build/i | ||
events: [pull_request] | ||
targets: [title] | ||
|
||
- label: 'goal: refactor' | ||
regexs: | ||
- /\brefactor\b/ | ||
- /refactor/i | ||
events: [pull_request] | ||
targets: [title] | ||
|
||
- label: 'accessibility' | ||
regexs: | ||
- /\baccessibility\b/ | ||
- /accessibility/i | ||
events: [issues, pull_request] # default | ||
targets: [title, comment] # default |
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,24 @@ | ||
# reference: https://github.com/hoho4190/issue-pr-labeler | ||
name: PR Labeler | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- reopened | ||
|
||
jobs: | ||
main: | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: read # to read configuration yml file | ||
pull-requests: write # to add labels to pull requests | ||
|
||
steps: | ||
- name: Run PR Labeler | ||
uses: hoho4190/issue-pr-labeler@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
config-file-name: labeler-config.yml | ||
# disable-bot: true # this will prevent issues, PRs created by bots |
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
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
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
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
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
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
export const maintainersData = [ | ||
{ login: 'rupali-codes', name: 'Rupali Codes' }, | ||
{ login: 'CBID2', name: 'CBID2' }, | ||
{ login: 'rupali-codes', name: 'Rupali Haldiya' }, | ||
{ login: 'CBID2', name: 'Christine Belzie' }, | ||
{ login: 'ujjawaltyagii', name: 'Ujjawal Tyagi' }, | ||
{ login: 'k-deepak04', name: 'Deepak Singh' }, | ||
] |
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,9 @@ | ||
[ | ||
{ | ||
"name": "Learn CI/CD by building projects", | ||
"description": "This is an amazing blog provides projects to help you understand CI/CD.", | ||
"url": "https://www.freecodecamp.org/news/what-is-ci-cd/", | ||
"category": "DevOps", | ||
"subcategory": "cicd" | ||
} | ||
] |
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,9 @@ | ||
[ | ||
{ | ||
"name": "DevOps Lifecycle", | ||
"description": "Learn everything about 7 different phases of the DevOps lifecycle", | ||
"url": "https://www.simform.com/blog/devops-lifecycle/", | ||
"category": "DevOps", | ||
"subcategory": "devopsLifecycle" | ||
} | ||
] |
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,9 @@ | ||
[ | ||
{ | ||
"name": "DevOps Methodology", | ||
"description": "This blog post describes the approach and philosophy behind DevOps.", | ||
"url": "https://www.cloudbees.com/blog/devops-methodology-understanding-the-approach-and-philosophy", | ||
"category": "DevOps", | ||
"subcategory": "devopsMethodologies" | ||
} | ||
] |
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,9 @@ | ||
[ | ||
{ | ||
"name": "Docker", | ||
"description": "In this blog post, you will learn how to use Docker.", | ||
"url": "https://www.mygreatlearning.com/blog/docker-tutorial/", | ||
"category": "DevOps", | ||
"subcategory": "docker" | ||
} | ||
] |
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,9 @@ | ||
[ | ||
{ | ||
"name": "Kubernetes Basics", | ||
"description": "This part of Kubernetes' docs teaches the basics of this program.", | ||
"url": "https://kubernetes.io/docs/tutorials/kubernetes-basics/", | ||
"category": "DevOps", | ||
"subcategory": "kubernetes" | ||
} | ||
] |
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,9 @@ | ||
[ | ||
{ | ||
"name": "Microservices Architecture", | ||
"description": "Learn Microservice System Design by reading this article.", | ||
"url": "https://sivanaikk0903.medium.com/microservices-architecture-a61fe9e48b41", | ||
"category": "DevOps", | ||
"subcategory": "microservices" | ||
} | ||
] |
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
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
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
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
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
Oops, something went wrong.