-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add todo-to-issue GitHub Action in order to add GitHub Issues from TO…
…DOs, etc. (#152) Co-authored-by: Jeffrey T. Fritz <csharpfritz@users.noreply.github.com>
- Loading branch information
1 parent
9b6806d
commit 187a5b4
Showing
3 changed files
with
27 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,8 @@ | ||
|
||
indent_size = 2 | ||
indent_style = tab | ||
tab_width = 2 | ||
end_of_line = lf | ||
|
||
[*.{yml,yaml}] | ||
indent_style = space |
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: Create GitHub Issues from TODOs, FIXMEs, etc. | ||
|
||
on: | ||
push: | ||
branches: ["main"] | ||
|
||
jobs: | ||
create_issues: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: "actions/checkout@v3" | ||
- name: "TODO to Issue" | ||
# See https://github.com/marketplace/actions/todo-to-issue for more configuration options | ||
uses: "alstr/todo-to-issue-action@v4" | ||
with: | ||
IDENTIFIERS: '[{"name": "TODO", "labels": ["help wanted"]}, {"name": "FIXME", "labels": ["bug"]}]' |
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