Skip to content

Auto complete abi form (#139) #210

Auto complete abi form (#139)

Auto complete abi form (#139) #210

Workflow file for this run

name: "TODO to Issue"
on:
push:
branches:
- main
jobs:
build:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: "TODO to Issue"
uses: "alstr/todo-to-issue-action@v5.1.4"
with:
INSERT_ISSUE_URLS: "true"
CLOSE_ISSUES: "true"
IDENTIFIERS: '[{"name": "TODO", "labels": ["todo"]}]'
- name: Set Git user
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Commit and Push Changes
run: |
git add -A
if [[ `git status --porcelain` ]]; then
git commit -m "Automatically added GitHub issue links to TODOs"
git push origin todos-fix
else
echo "No changes to commit"
fi