-
Notifications
You must be signed in to change notification settings - Fork 0
Support post job phase #1
base: main
Are you sure you want to change the base?
Conversation
Update `node-fetch`
…-core Update `@actions/core` to 1.6.0
Release version 6.0.0
Add an example using ESM `import`
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think either we should make this patch to upstream, or change it so instead of having support for post GitHub Script, we have support for post Bash Script. We are using this on inloco/actions-cache and there we are basically calling Bash from Node, it would be more useful to have pre-run
, run
, and post-run
that receive bash scripts and execute them.
I don't think that would be accepted in upstream, which has a very simple API.
That's actually how I started. But there are some special auxiliary functions provided by github-script that are very helpful, like the file globber, to describe files in a standard way for GitHub Actions workflows. |
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. - [Release notes](https://github.com/substack/minimist/releases) - [Commits](https://github.com/substack/minimist/compare/1.2.5...1.2.6) --- updated-dependencies: - dependency-name: minimist dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]>
Update README with Markdown text formatting example
…inimist-1.2.6 Bump minimist from 1.2.5 to 1.2.6
Pull requests from forks do not have write permission, so we need to use `pull_request_target` instead of `pull_request` to enable write permission. Fixes actions#42.
README: use pull_request_target in example
7da83f5
to
d61bd36
Compare
Support using github-script with post phase and shared prelude.