Skip to content

Commit

Permalink
Add top level comments, rename cleanup to post
Browse files Browse the repository at this point in the history
  • Loading branch information
Angela P Wen committed Aug 2, 2022
1 parent a557279 commit 44a27e6
Show file tree
Hide file tree
Showing 19 changed files with 33 additions and 12 deletions.
2 changes: 1 addition & 1 deletion analyze/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ outputs:
runs:
using: "node16"
main: "../lib/analyze-action.js"
post: "../lib/analyze-action-cleanup.js"
post: "../lib/analyze-action-post.js"
2 changes: 1 addition & 1 deletion init/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,4 +78,4 @@ outputs:
runs:
using: 'node16'
main: '../lib/init-action.js'
post: '../lib/init-action-cleanup.js'
post: '../lib/init-action-post.js'
1 change: 0 additions & 1 deletion lib/analyze-action-cleanup.js.map

This file was deleted.

3 changes: 0 additions & 3 deletions lib/analyze-action-cleanup.test.js

This file was deleted.

1 change: 0 additions & 1 deletion lib/analyze-action-cleanup.test.js.map

This file was deleted.

7 changes: 6 additions & 1 deletion lib/analyze-action-cleanup.js → lib/analyze-action-post.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/analyze-action-post.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions lib/analyze-action-post.test.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/analyze-action-post.test.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion lib/init-action-cleanup.js.map

This file was deleted.

1 change: 0 additions & 1 deletion lib/init-action-cleanup.test.js.map

This file was deleted.

7 changes: 6 additions & 1 deletion lib/init-action-cleanup.js → lib/init-action-post.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/init-action-post.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions lib/init-action-post.test.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

File renamed without changes.
5 changes: 5 additions & 0 deletions src/analyze-action-cleanup.ts → src/analyze-action-post.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
/**
* This file is the entry point for the `post:` hook of `analyze-action.yml`.
* It will run after the all steps in this job, in reverse order in relation to
* other `post:` hooks.
*/
import * as core from "@actions/core";

import * as actionsUtil from "./actions-util";
Expand Down
File renamed without changes.
6 changes: 6 additions & 0 deletions src/init-action-cleanup.ts → src/init-action-post.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
/**
* This file is the entry point for the `post:` hook of `init-action.yml`.
* It will run after the all steps in this job, in reverse order in relation to
* other `post:` hooks.
*/

import * as core from "@actions/core";

import * as actionsUtil from "./actions-util";
Expand Down

0 comments on commit 44a27e6

Please sign in to comment.