Skip to content

Commit 8a3d09a

Browse files
tbjersclaude
andauthored
ci: reference the report action by local path, not a version pin (#60)
* ci: reference the report action by local path, not a version pin Point both Report coverage steps at ./.github/actions/report instead of a pinned CoverageTracker/coverage-tracker/.../report@vX.Y.Z tag. This repo dogfoods its own action, so it should run the exact code on the current branch rather than a released version — and a local path never needs resolving a tag/branch at all, which permanently removes the catch-22 where release-prep bumped this pin ahead of the tag existing. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 6e7a2a6 commit 8a3d09a

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,11 @@ jobs:
7979
retention-days: 30
8080

8181
- name: Report coverage
82-
uses: CoverageTracker/coverage-tracker/.github/actions/report@v0.3.0
82+
# Local path, not a pinned release tag: this repo dogfoods its own
83+
# action, so it should always run the exact code on this branch/ref
84+
# rather than a released version that may lag behind (or, during
85+
# release prep, not exist yet as a tag at all).
86+
uses: ./.github/actions/report
8387
with:
8488
worker-url: https://demo.coveragetracker.dev
8589
coverage-path: dashboard/coverage/lcov.info
@@ -115,7 +119,7 @@ jobs:
115119
run: npm run test:coverage
116120

117121
- name: Report coverage
118-
uses: CoverageTracker/coverage-tracker/.github/actions/report@v0.3.0
122+
uses: ./.github/actions/report
119123
with:
120124
worker-url: https://demo.coveragetracker.dev
121125
category: backend

.github/workflows/claude-code-review.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
plugin_marketplaces: 'https://github.com/anthropics/claude-code.git'
4040
plugins: 'code-review@claude-code-plugins'
4141
prompt: '/code-review:code-review ${{ github.repository }}/pull/${{ github.event.pull_request.number }}'
42+
allowed_bots: "dependabot[bot],copilot[bot]"
4243
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
4344
# or https://code.claude.com/docs/en/cli-reference for available options
4445

0 commit comments

Comments
 (0)