generated from reviewdog/action-template
-
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use reviewdog/action-setup in action steps * add tool_name input, del unused default env value * add shfmt + actionlint checks, simplify ci * add declarative label management * better action testing * fix linters errors * disable automatic check of failing tests
- Loading branch information
Showing
11 changed files
with
110 additions
and
39 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,26 @@ | ||
[ | ||
{ | ||
"name": "bump:major", | ||
"color": "ef6bb4", | ||
"description": "Attach to PR to automatically bump major version on merge" | ||
}, | ||
{ | ||
"name": "bump:minor", | ||
"color": "ef6bb4", | ||
"description": "Attach to PR to automatically bump minor version on merge" | ||
}, | ||
{ | ||
"name": "bump:patch", | ||
"color": "ef6bb4", | ||
"description": "Attach to PR to automatically bump patch version on merge" | ||
}, | ||
{ | ||
"name": "status - waiting for feedback", | ||
"color": "fbca04", | ||
"description": "Waiting for additional feedback from people involved in the issue / pull request" | ||
}, | ||
{ | ||
"name": "stale", | ||
"color": "ededed" | ||
} | ||
] |
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
4 changes: 2 additions & 2 deletions
4
.github/workflows/label_management.yml → .github/workflows/issues_prs_labeler.yml
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# yamllint disable rule:document-start | ||
# yamllint disable rule:line-length | ||
# Workflow handling available labels in the repository. The list of labels is declared in .github/labels.json | ||
name: Label management | ||
on: | ||
push: | ||
paths: | ||
- .github/labels.json | ||
- .github/workflows/labels.yml | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
jobs: | ||
label: | ||
name: Manage GitHub labels | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Manage labels | ||
uses: lannonbr/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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