We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parentf9d8109 commit3424b52Copy full SHA for 3424b52
README.md
@@ -66,9 +66,9 @@ Actions expressions are evaluated before the `script` is passed to the action, s
66
67
It's highly recommended to*not* evaluate expressions directly in the`script` to avoid
68
[script injections](https://docs.github.com/actions/security-for-github-actions/security-guides/security-hardening-for-github-actions#understanding-the-risk-of-script-injections)
69
-and potential`SyntaxError`s when the expression is not valid JavaScript code (particlarly when it comes toinproperly escaped strings).
+and potential`SyntaxError`s when the expression is not valid JavaScript code (particularly when it comes toimproperly escaped strings).
70
71
-To pass inputs, set`env` vars on the action step and referencethenthem in your script with`process.env`:
+To pass inputs, set`env` vars on the action step and reference them in your script with`process.env`:
72
73
```yaml
74
-uses:actions/github-script@v7