Skip to content

Commit bc6b4a7

Browse files
committed
add notice
1 parent d88ad35 commit bc6b4a7

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

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)