name: "TODO to Issue" description: "Converts IDE TODO comments to GitHub issues" author: "Alastair Mooney" runs: using: "docker" image: "Dockerfile" branding: icon: "check-square" color: "orange" inputs: REPO: description: "The path to the repository where the action will be used, e.g. 'alstr/my-repo' (automatically set)" required: true default: "${{ github.repository }}" BEFORE: description: "The SHA of the last pushed commit (automatically set)" required: true default: "${{ github.event.before }}" SHA: description: "The SHA of the latest commit (automatically set)" required: true default: "${{ github.sha }}" TOKEN: description: "The GitHub access token to allow us to retrieve, create and update issues (automatically set)" required: true CLOSE_ISSUES: description: "Optional input that specifies whether to attempt to close an issue when a TODO is removed" required: true default: true AUTO_P: description: "For multiline TODOs, format each line as a new paragraph when creating the issue" required: true default: true