Skip to content

Commit e8af372

Browse files
committed
ci: Add TODOs to Issues workflow
1 parent b08ca30 commit e8af372

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/todos.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)