Merge branch 'main' into main #9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Actions - TODO to Issue" | |
on: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
MANUAL_COMMIT_REF: | |
description: "SHA to compare" | |
required: true | |
MANUAL_BASE_REF: | |
description: "Optional earlier SHA" | |
required: false | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: "actions/checkout@v4" | |
with: | |
fetch-depth: 0 | |
- name: "TODO to Issue" | |
uses: "alstr/[email protected]" | |
with: | |
CLOSE_ISSUES: true | |
INSERT_ISSUE_URLS: true | |
AUTO_ASSIGN: true | |
IDENTIFIERS: '[{"name": "TODO", "labels": ["enhancement"]}, {"name": "FIXME", "labels": ["bug"]}]' | |
ESCAPE: true | |
IGNORE: ".github/,node_modules/,dist/,build/,vendor/poetry.lock" | |
PROJECTS_SECRET: ${{ secrets.ADMIN_PAT }} |