Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Action verbiage #397

Merged
merged 3 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/)
Expand Down
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
@@ -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'
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <trentonyo@gmail.com>"]
license = "GPL-3.0-only"
Expand Down