You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`scope`| true | The scope is used to identify which value to select for each key name. See the usage instructions below. |
31
32
|`input-file`| false | A specially formatted YAML file containing possible environment variable candidates with their associated scopes. |
32
-
|`create-output-variables`| false | Create output variables (in addiction to environment variables) for use in other steps and jobs. Accepts true or false. Defaults to false. |
33
+
|`create-output-variables`| false | Create output variables (in addition to environment variables) for use in other steps and jobs. Accepts true or false. Defaults to false. |
33
34
|`error-on-no-match`| false | An error will be thrown if no environment variables or outputs are created, a warning will appear for all keys that don't provide a value for the input scope. |
34
35
|`custom-error-message`| false | The error message that will be displayed if no environment or output variables are created. `error_on_no_match` must be set to true |
@@ -201,6 +202,7 @@ When creating PRs, please review the following guidelines:
201
202
- [ ] At least one of the commit messages contains the appropriate `+semver:` keywords listed under [Incrementing the Version] for major and minor increments.
202
203
- [ ] The action has been recompiled. See [Recompiling Manually] for details.
203
204
- [ ] The README.md has been updated with the latest version of the action. See [Updating the README.md] for details.
205
+
- [ ] Any tests in the [build-and-review-pr] workflow are passing
204
206
205
207
### Incrementing the Version
206
208
@@ -235,6 +237,10 @@ npm run build
235
237
236
238
If changes are made to the action's [source code], the [usage examples] section of this file should be updated with the next version of the action. Each instance of this action should be updated. This helps users know what the latest tag is without having to navigate to the Tags page of the repository. See [Incrementing the Version] for details on how to determine what the next version will be or consult the first workflow run for the PR which will also calculate the next version.
237
239
240
+
### Tests
241
+
242
+
The build and review PR workflow includes tests which are linked to a status check. That status check needs to succeed before a PR is merged to the default branch. The tests do not need special permissions, so they should succeed whether they come from a branch or a fork.
243
+
238
244
## Code of Conduct
239
245
240
246
This project has adopted the [im-open's Code of Conduct](https://github.com/im-open/.github/blob/main/CODE_OF_CONDUCT.md).
Copy file name to clipboardExpand all lines: action.yml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ inputs:
9
9
description: 'A specially formatted YAML file containing possible environment variable candidates with their associated scopes'
10
10
required: false
11
11
create-output-variables:
12
-
description: 'Create output variables (in addiction to environment variables) for use in other steps and jobs, accepts true or false, defaults to false'
12
+
description: 'Create output variables (in addition to environment variables) for use in other steps and jobs, accepts true or false, defaults to false'
0 commit comments