mirror of https://github.com/actions/toolkit
Update readme
parent
3cc6d13dbb
commit
29212cf252
|
@ -262,6 +262,15 @@ var pid = core.getState("pidToKill");
|
||||||
|
|
||||||
process.kill(pid);
|
process.kill(pid);
|
||||||
```
|
```
|
||||||
|
#### Environment
|
||||||
|
|
||||||
|
To check whether action runs on [GitHub Enterprise Server](https://docs.github.com/en/enterprise-server@3.10/admin/overview/about-github-enterprise-server) you can use isGhes helper:
|
||||||
|
|
||||||
|
```js
|
||||||
|
const core = require('@actions/core')
|
||||||
|
|
||||||
|
const isGithubEnterpriseServer = core.isGhes()
|
||||||
|
```
|
||||||
|
|
||||||
#### OIDC Token
|
#### OIDC Token
|
||||||
|
|
||||||
|
@ -333,3 +342,5 @@ toPlatformPath('/foo/bar') // => \foo\bar
|
||||||
// On a Linux runner.
|
// On a Linux runner.
|
||||||
toPlatformPath('\\foo\\bar') // => /foo/bar
|
toPlatformPath('\\foo\\bar') // => /foo/bar
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue