Releases: actions/github-script
Update actions/github
This updates the NPM package @actions/github
to the latest version, which includes updates to the rest API interface.
Add @actions/io
This release includes the @actions/io package, exposed as io
in the script.
Initial release
This is the initial major release of actions/github-script
Add @actions/core
This release adds the core
variable to the script, which gives one access to the @actions/core package.
Fix version references
The previous release had 0.6.0 in package*.json, and the README. This release has proper versions, because pedantry.
Update @actions dependencies
0.7.0 Update README.md
Fix async/await
Version 0.5.0 targeted an older version of ECMAScript. This version builds the action for ES2018.
Default to github-token
This release includes #24, which defaults to using the default GitHub token from the workflow context.
Add result-encoding
This release adds the "result-encoding" input (see README).
Add "require" to function context
This release passes require
to the function context, meaning you can require native Node.js modules (though still not modules in your repository's node_modules directory, for example).