-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into ci/dispatch-pre-gen-update
- Loading branch information
Showing
1 changed file
with
40 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,40 @@ | ||
name: Issues | ||
on: | ||
push: | ||
branches: [main, master] | ||
workflow_dispatch: | ||
inputs: | ||
commit_ref: | ||
description: "The SHA of the commit to get the diff for" | ||
required: true | ||
base_ref: | ||
description: "By default, the commit entered above is compared to the one directly before it; to go back further, enter an earlier SHA here" | ||
required: false | ||
jobs: | ||
TODO: | ||
runs-on: ubuntu-latest | ||
continue-on-error: true | ||
permissions: | ||
issues: write | ||
contents: read | ||
pull-requests: read | ||
repository-projects: read | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: TODO to Issues | ||
uses: "alstr/todo-to-issue-action@v4" | ||
env: | ||
MANUAL_COMMIT_REF: ${{ inputs.commit_ref }} | ||
MANUAL_BASE_REF: ${{ inputs.base_ref }} | ||
with: | ||
CLOSE_ISSUES: true | ||
AUTO_ASSIGN: true | ||
IDENTIFIERS: > | ||
[ | ||
{ "name": "TODO", "labels": [] }, | ||
{ "name": "FIXME", "labels": [] }, | ||
{ "name": "XXX", "labels": [] }, | ||
{ "name": "HACK", "labels": [] }, | ||
{ "name": "BUG", "labels": ["bug"] } | ||
] |