We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b08ca30 commit e8af372Copy full SHA for e8af372
.github/workflows/todos.yaml
@@ -0,0 +1,27 @@
1
+name: TODO to Issue
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ workflow_dispatch:
7
+ inputs:
8
+ MANUAL_COMMIT_REF:
9
+ description: The SHA of the commit to get the diff for
10
+ required: true
11
+ MANUAL_BASE_REF:
12
+ description: By default, the commit entered above is compared to the one directly before it; to go back further, enter an earlier SHA here
13
+ required: false
14
+jobs:
15
+ build:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout
19
+ uses: actions/checkout@v3
20
+ - name: TODOs to Issue
21
+ uses: alstr/todo-to-issue-action@v4
22
+ with:
23
+ CLOSE_ISSUES: true
24
+ AUTO_ASSIGN: true
25
+ env:
26
+ MANUAL_COMMIT_REF: ${{ inputs.MANUAL_COMMIT_REF }}
27
+ MANUAL_BASE_REF: ${{ inputs.MANUAL_BASE_REF }}
0 commit comments