diff --git a/.forgejo/workflows/claude.yml b/.forgejo/workflows/claude.yml index 99a9d45..caa4ee5 100644 --- a/.forgejo/workflows/claude.yml +++ b/.forgejo/workflows/claude.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Claude - uses: https://git.kjan.de/actions/claude-pr-review@23487ee91f7b8a482ed5c2c1c03cf744f57eac3a + uses: https://git.kjan.de/actions/claude-pr-review@1878fa8a576e5052194a42678af6f23776c7b206 with: ANTHROPIC_API_KEY: ${{ secrets.ANTHROPIC_API_KEY }} GITEA_URL: ${{ secrets._GITEA_URL }} diff --git a/README.md b/README.md index d5c3fc8..9b6d35f 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ This action is a `composite` action. ## Usage ```yaml -- uses: https://git.kjan.de/actions/claude-pr-review@v1 +- uses: ***PROJECT***@***VERSION*** with: ANTHROPIC_API_KEY: # The API key for the anthropic API diff --git a/action.yml b/action.yml index dfc8ba2..ef877f0 100644 --- a/action.yml +++ b/action.yml @@ -57,7 +57,6 @@ runs: - name: Claude PR Review if: steps.check-renovate.outputs.author != 'Renovate Bot' - continue-on-error: true env: ANTHROPIC_API_KEY: ${{ inputs.ANTHROPIC_API_KEY }} PR_NUMBER: ${{ github.event.number }} diff --git a/release.config.cjs b/release.config.cjs index 3b51bc9..dffea8d 100644 --- a/release.config.cjs +++ b/release.config.cjs @@ -13,6 +13,7 @@ module.exports = { { type: "style", release: "patch" }, { type: "refactor", release: "patch" }, { type: "test", release: "patch" }, + { type: "chore", release: "patch" }, { type: "ci", release: "patch" }, { type: "build", release: "patch" }, { type: "revert", release: "patch" }, @@ -36,6 +37,7 @@ module.exports = { { type: "style", section: "Code Style", hidden: false }, { type: "refactor", section: "Code Refactoring", hidden: false }, { type: "test", section: "Tests", hidden: false }, + { type: "chore", section: "Chores", hidden: false }, { type: "ci", section: "Continuous Integration", hidden: false }, { type: "build", section: "Build System", hidden: false }, { type: "revert", section: "Reverts", hidden: false },