Skip to content

Commit 9d5223b

Browse files
committed
add github action workflow
1 parent 2bd80bd commit 9d5223b

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflow.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: "Run 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+
- uses: "actions/checkout@v4"
19+
- name: "TODO to Issue"
20+
uses: "alstr/todo-to-issue-action@v5"

0 commit comments

Comments
 (0)