Skip to content

Commit

Permalink
show core.notice
Browse files Browse the repository at this point in the history
  • Loading branch information
mcascone committed Aug 13, 2024
1 parent 073a295 commit 36cd3f5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions actions/example-config-updater/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ function run() {
core.setOutput("test", "this is a test");
core.exportVariable("ARTIFACT_ID", id);
core.info('this is coming from core.info');
core.notice('this is coming from core.notice');
}
catch (error) {
core.setFailed(error.message);
Expand Down
1 change: 1 addition & 0 deletions actions/example-config-updater/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ export async function run() {
core.exportVariable("ARTIFACT_ID", id);

core.info('this is coming from core.info');
core.notice('this is coming from core.notice');

} catch (error) {
core.setFailed(error.message);
Expand Down

0 comments on commit 36cd3f5

Please sign in to comment.