-
Notifications
You must be signed in to change notification settings - Fork 547
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): add repo organization actions (#3606)
* improve CI * fix the docs label name --------- Co-authored-by: Pantani <Pantani>
- Loading branch information
Showing
12 changed files
with
168 additions
and
2 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,30 @@ | ||
":robot: CI": | ||
- .github/**/* | ||
|
||
":book: docs": | ||
- assets/**/* | ||
- docs/**/* | ||
|
||
":hammer: tools": | ||
- .actions/**/* | ||
- .scripts/**/* | ||
|
||
":package: packages": | ||
- ignite/pkg/**/* | ||
|
||
":arrow_forward: cmd": | ||
- ignite/cmd/**/* | ||
|
||
":taxi: services": | ||
- ignite/services/**/* | ||
|
||
":bookmark: templates": | ||
- ignite/templates/**/* | ||
|
||
":door: internal": | ||
- ignite/config/**/* | ||
- ignite/internal/**/* | ||
- ignite/version/**/* | ||
|
||
":wrench: configs": | ||
- * |
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,72 @@ | ||
[ | ||
{ | ||
"name": "bug", | ||
"color": "d73a4a", | ||
"description": "Something isn't working" | ||
}, | ||
{ | ||
"name": "bug fix", | ||
"color": "8a1d1c", | ||
"description": "Functionality that fixes a bug" | ||
}, | ||
{ | ||
"name": "dependencies", | ||
"color": "5319e7", | ||
"description": "Update to the dependencies" | ||
}, | ||
{ | ||
"name": "docs", | ||
"color": "0075ca", | ||
"description": "Improvements or additions to documentation" | ||
}, | ||
{ | ||
"name": "duplicate", | ||
"color": "cfd3d7", | ||
"description": "This issue or pull request already exists" | ||
}, | ||
{ | ||
"name": "good first issue", | ||
"color": "7057ff", | ||
"description": "Good for newcomers" | ||
}, | ||
{ | ||
"name": "help wanted", | ||
"color": "008672", | ||
"description": "Extra attention is needed" | ||
}, | ||
{ | ||
"name": "breaking change", | ||
"color": "a7327e", | ||
"description": "Functionality that contains breaking changes" | ||
}, | ||
{ | ||
"name": "don't merge", | ||
"color": "b60205", | ||
"description": "Please don't merge this functionality temporarily" | ||
}, | ||
{ | ||
"name": "feature", | ||
"color": "ffb703", | ||
"description": "New update to Gno" | ||
}, | ||
{ | ||
"name": "hotfix", | ||
"color": "003049", | ||
"description": "Major bug fix that should be merged ASAP" | ||
}, | ||
{ | ||
"name": "info needed", | ||
"color": "54eba0", | ||
"description": "More information needed" | ||
}, | ||
{ | ||
"name": "question", | ||
"color": "fbca04", | ||
"description": "Questions about Gno" | ||
}, | ||
{ | ||
"name": "investigating", | ||
"color": "8c008c", | ||
"description": "This behavior is still being tested out" | ||
} | ||
] |
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,18 @@ | ||
name: auto-author-assign | ||
|
||
on: | ||
pull_request_target: | ||
types: [ opened, reopened ] | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
assign-author: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: toshimaru/[email protected] |
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,16 @@ | ||
name: "Pull Request Labeler" | ||
on: | ||
- pull_request_target | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
triage: | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/labeler@v4 |
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
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