diff --git a/README.md b/README.md index f5e304e..8876913 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ Install [the app on GitHub](https://github.com/apps/todo-or-not) and [use todoon ```yaml - name: run-todoon - uses: Start-Out/todo-or-not@v0.14.2 + uses: Start-Out/todo-or-not@v0.14.3 ``` [Try it out locally! (see on PyPi)](https://pypi.org/project/todo-or-not/) diff --git a/action.yml b/action.yml index fe2304c..da12c4b 100644 --- a/action.yml +++ b/action.yml @@ -1,5 +1,5 @@ # action.yml -name: "run-todoon" +name: "Run todoon" description: "Integrates the TODOs in your codebase with your GitHub issues" branding: icon: 'list' @@ -25,7 +25,7 @@ inputs: required: false default: 0 type: number - can_fail: + allow_fail: description: 'If true, todoon will exit nonzero if any TODO/FIXMEs are found' required: false default: true @@ -119,7 +119,7 @@ runs: shell: bash run: | echo "ENABLE_ISSUES=${{ inputs.issues }}" >> $GITHUB_ENV - echo "ENABLE_SILENT=${{ inputs.can_fail }}" >> $GITHUB_ENV + echo "ENABLE_SILENT=${{ inputs.allow_fail }}" >> $GITHUB_ENV if [ "${{ inputs.closed_issue_check }}" -eq -1 ]; then echo "ENABLE_CLOSED_ISSUE_CHECK=false" >> $GITHUB_ENV else diff --git a/pyproject.toml b/pyproject.toml index 1644b48..77e02c8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "todo-or-not" -version = "0.14.2" +version = "0.14.3" description = "todoon integrates the TODOs in your codebase with your GitHub repository" authors = ["TrentonYo "] license = "GPL-3.0-only"