Skip to content

Commit 19046b3

Browse files
committed
chore: release 1.0.2
1 parent d03e492 commit 19046b3

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ Then make `ReviewRouter / review` a required status check in branch protection.
171171
If you want an exact pinned release instead of the auto-updating stable major tag, use:
172172

173173
```yaml
174-
uses: 777genius/review-router@v1.0.1
174+
uses: 777genius/review-router@v1.0.2
175175
```
176176

177177
If you intentionally want the live branch, use:

__tests__/e2e/install-script.e2e.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,8 @@ describe('review-router curl installer e2e', () => {
9696

9797
expect(result.status).toBe(0);
9898
const workflow = workflowText(result.workflowPath);
99-
expect(workflow).toContain('uses: 777genius/review-router@v1.0.1');
100-
expect(result.stdout).toContain('Action ref: 777genius/review-router@v1.0.1');
99+
expect(workflow).toContain('uses: 777genius/review-router@v1.0.2');
100+
expect(result.stdout).toContain('Action ref: 777genius/review-router@v1.0.2');
101101
});
102102

103103
it('keeps legacy AI_ROBOT_REVIEW environment aliases working', () => {

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The generated workflow uses the stable major tag by default:
1414
777genius/review-router@v1
1515
```
1616

17-
`@v1` is moved to the latest compatible stable v1 release. Use `REVIEW_ROUTER_ACTION_REF_MODE=release` if you want the exact latest release tag pinned at install time, currently `777genius/review-router@v1.0.1`. Use `REVIEW_ROUTER_ACTION_REF_MODE=main` if you want the target repository to run the newest `main` branch on every workflow run. Use `REVIEW_ROUTER_ACTION_REF=owner/repo@ref` for a custom fork or exact commit SHA.
17+
`@v1` is moved to the latest compatible stable v1 release. Use `REVIEW_ROUTER_ACTION_REF_MODE=release` if you want the exact latest release tag pinned at install time, currently `777genius/review-router@v1.0.2`. Use `REVIEW_ROUTER_ACTION_REF_MODE=main` if you want the target repository to run the newest `main` branch on every workflow run. Use `REVIEW_ROUTER_ACTION_REF=owner/repo@ref` for a custom fork or exact commit SHA.
1818

1919
## Quick start
2020

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "review-router",
3-
"version": "1.0.1",
3+
"version": "1.0.2",
44
"description": "ReviewRouter GitHub Action for PR summaries, inline findings, and optional merge-blocking checks.",
55
"main": "dist/index.js",
66
"type": "commonjs",

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
set -Eeuo pipefail
77

88
PRODUCT_NAME="review-router"
9-
LATEST_RELEASE_TAG="v1.0.1"
9+
LATEST_RELEASE_TAG="v1.0.2"
1010
LATEST_MAJOR_TAG="v1"
1111
DEFAULT_ACTION_REF_MODE="stable"
1212
DEFAULT_STABLE_ACTION_REF="777genius/review-router@$LATEST_MAJOR_TAG"

0 commit comments

Comments
 (0)