Skip to content

Commit dd2f730

Browse files
authored
Merge pull request #9 from JonasPBovin/add-se-functions
Add se functions
2 parents f04d054 + d226a0f commit dd2f730

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

README.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,16 @@ The following arguments will be provided:
1919
- `io` A reference to the [@actions/io](https://github.com/actions/toolkit/tree/main/packages/io) package
2020
- `exec` A reference to the [@actions/exec](https://github.com/actions/toolkit/tree/main/packages/exec) package
2121
- `require` A proxy wrapper around the normal Node.js `require` to enable
22-
- 'se' A library for resusbale functions
23-
requiring relative paths (relative to the current working directory) and
24-
requiring npm packages installed in the current working directory. If for
25-
some reason you need the non-wrapped `require`, there is an escape hatch
26-
available: `__original_require__` is the original value of `require` without
27-
our wrapping applied.
22+
- `se` A library for resusbale functions
23+
- `createMetaJson` Create meta.json files for all deployable component
24+
- `startCheck` Helper method to create a check without annotations
25+
- `completeCheck` Helper method to finish a check without annotations
26+
27+
requiring relative paths (relative to the current working directory) and
28+
requiring npm packages installed in the current working directory. If for
29+
some reason you need the non-wrapped `require`, there is an escape hatch
30+
available: `__original_require__` is the original value of `require` without
31+
our wrapping applied.
2832

2933
Since the `script` is just a function body, these values will already be
3034
defined, so you don't have to import them (see examples below).

0 commit comments

Comments
 (0)