Skip to content

Commit 309eac9

Browse files
committed
Add TODO to Issue workflow
1 parent b4cfbf4 commit 309eac9

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: "Run TODO to Issue"
2+
on:
3+
push:
4+
branches:
5+
- dev
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+
15+
jobs:
16+
call-workflow-passing-data:
17+
uses: EventAccess/Meta/.github/workflows/todo-to-issue.yaml@dev
18+
with:
19+
MANUAL_COMMIT_REF: ${{ inputs.MANUAL_COMMIT_REF }}
20+
MANUAL_BASE_REF: ${{ inputs.MANUAL_BASE_REF }}
21+
secrets:
22+
PROJECTS_SECRET: ${{ secrets.PROJECTS_SECRET }}
23+
ACTION_PUSH_KEY: ${{ secrets.ACTION_PUSH_KEY }}

0 commit comments

Comments
 (0)