blob: 76f38148696c4c025fbee359c0a8b50189c37a63 [file] [log] [blame]
Tim Windelschmidtb460ec92025-06-28 23:36:31 +02001name: "Run TODO to Issue"
Tim Windelschmidt3259f9a2025-06-29 00:45:43 +02002on:
3 push:
4 workflow_dispatch:
5 inputs:
6 MANUAL_COMMIT_REF:
7 description: "The SHA of the commit to get the diff for"
8 required: true
9 MANUAL_BASE_REF:
10 description: "By default, the commit entered above is compared to the one directly before it; to go back further, enter an earlier SHA here"
11 required: false
Tim Windelschmidtb460ec92025-06-28 23:36:31 +020012jobs:
13 build:
14 runs-on: "ubuntu-latest"
Tim Windelschmidtb460ec92025-06-28 23:36:31 +020015 steps:
16 - uses: "actions/checkout@v4"
17 - name: "TODO to Issue"
Tim Windelschmidt3259f9a2025-06-29 00:45:43 +020018 uses: "alstr/todo-to-issue-action@v5"
19 env:
20 MANUAL_COMMIT_REF: ${{ inputs.MANUAL_COMMIT_REF }}
21 MANUAL_BASE_REF: ${{ inputs.MANUAL_BASE_REF }}
Tim Windelschmidte2265b32025-07-10 19:31:07 +020022 INPUT_IGNORE: "MODULE\\.bazel\\.lock"