You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name: Create issues from TODOson:
workflow_dispatch:
inputs:
MANUAL_COMMIT_REF:
description: 'The SHA of the commit to get the diff for'required: trueMANUAL_BASE_REF:
description: 'By default, the commit entered above is compared to the one directly before it; to go back further, enter an earlier SHA here'required: falsepull_request:
push:
branches: # TODO: do not set multiple branches, todos might be added and then get referenced by themselves in case of a merge
- main#TODO: check works or notpermissions:
issues: writerepository-projects: readcontents: readjobs:
todos:
runs-on: ubuntu-latest# TODO: Make sure this worksteps:
- uses: actions/[email protected]with:
lfs: truefetch-depth: 0
- name: 'TODO to Issue'uses: 'alstr/todo-to-issue-action@v5'env:
MANUAL_COMMIT_REF: ${{ inputs.MANUAL_COMMIT_REF }}MANUAL_BASE_REF: ${{ inputs.MANUAL_BASE_REF }}INSERT_ISSUE_URLS: True
- name: Set Git userrun: | git config --global user.name "github-actions[bot]" git config --global user.email "github-actions[bot]@users.noreply.github.com"
- name: Commit and Push Changesrun: | git add -A if [[ `git status --porcelain` ]]; then git commit -m "Automatically added GitHub issue links to TODOs" git push origin main else echo "No changes to commit" fi
there is no changes made when enabling this setting to the file
The text was updated successfully, but these errors were encountered:
when setting
INSERT_ISSUE_URLS: True
there is no changes made when enabling this setting to the file
The text was updated successfully, but these errors were encountered: