Skip to content

Commit 3c589da

Browse files
authored
chore: update readme to point to v2-beta (#128)
Fixes #
1 parent 2f4259c commit 3c589da

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
GitHub action to comment on PRs with the stack diff.
44

5+
> [!INFO]
6+
> Try the [v2-beta](https://github.com/corymhall/cdk-diff-action/tree/v2-beta) for the latest features
7+
58
![](./diff-screenshot.png)
69

710
## :sparkles: Features

dist/index.js

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

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/action.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { getInput, getBooleanInput } from '@actions/core';
1+
import { getInput, getBooleanInput, notice } from '@actions/core';
22
import * as github from '@actions/github';
33
import { AssemblyManifestReader } from './assembly';
44
import { Comments } from './comment';
@@ -14,6 +14,10 @@ export async function run() {
1414
noFailOnDestructiveChanges: getInput('noFailOnDestructiveChanges').split(','),
1515
cdkOutDir: getInput('cdkOutDir') ?? 'cdk.out',
1616
};
17+
18+
notice('cdk-diff-action v2-beta is now available! Please consider using it and provide feedback.', {
19+
title: 'cdk-diff-action v2-beta',
20+
});
1721
const octokit = github.getOctokit(inputs.githubToken);
1822
const context = github.context;
1923
try {

0 commit comments

Comments
 (0)