git-commit-guard 0.15.0__tar.gz → 0.15.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/PKG-INFO +1 -1
  2. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/action.yml +3 -1
  3. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/.editorconfig +0 -0
  4. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/.github/workflows/lint-commits.yml +0 -0
  5. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/.github/workflows/lint-md.yml +0 -0
  6. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/.github/workflows/lint-python.yml +0 -0
  7. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/.github/workflows/release.yml +0 -0
  8. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/.github/workflows/test.yml +0 -0
  9. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/.gitignore +0 -0
  10. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/.markdownlint.json +0 -0
  11. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/.pre-commit-hooks.yaml +0 -0
  12. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/.python-version +0 -0
  13. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/LICENSE +0 -0
  14. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/README.md +0 -0
  15. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/docs/commit-guard-icon.svg +0 -0
  16. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/docs/index.html +0 -0
  17. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/pyproject.toml +0 -0
  18. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/ruff.toml +0 -0
  19. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/src/git_commit_guard/__init__.py +0 -0
  20. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/tests/__init__.py +0 -0
  21. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/tests/test_git_commit_guard.py +0 -0
  22. {git_commit_guard-0.15.0 → git_commit_guard-0.15.1}/uv.lock +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: git-commit-guard
3
- Version: 0.15.0
3
+ Version: 0.15.1
4
4
  Summary: Opinionated conventional commit message linter with imperative mood detection
5
5
  Project-URL: Homepage, https://github.com/benner/commit-guard
6
6
  Project-URL: Repository, https://github.com/benner/commit-guard
@@ -97,5 +97,7 @@ runs:
97
97
  [[ -n "$CG_REQUIRE_TRAILER" ]] && ARGS+=(--require-trailer "$CG_REQUIRE_TRAILER")
98
98
  [[ -n "$CG_OUTPUT_FILE" ]] && ARGS+=(--output-file "$CG_OUTPUT_FILE")
99
99
  commit-guard "${ARGS[@]}"
100
- [[ -n "$CG_OUTPUT_FILE" ]] && echo "output-file=$CG_OUTPUT_FILE" >> "$GITHUB_OUTPUT"
100
+ if [[ -n "$CG_OUTPUT_FILE" ]]; then
101
+ echo "output-file=$CG_OUTPUT_FILE" >> "$GITHUB_OUTPUT"
102
+ fi
101
103
  shell: bash