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
input: https://github.com/$GITHUB_REPOSITORY # if input is omited it will use GITHUB_REPOSITORY url
31
+
pitfalls_output: "./pitfalls_outputs"
32
32
verbose: "false"
33
33
```
34
34
@@ -45,6 +45,7 @@ jobs:
45
45
| `branch` | Branch of the repository to analyze. | No | |
46
46
| `generate_codemeta` | Generate codemeta files for each repository. | No | `false` |
47
47
| `verbose` | Include both detected AND undetected pitfalls in the output JSON-LD. | No | `false` |
48
+
| `config` | Specify the location of the `rsmetacheck.toml` to define the configuration. RSMetaCheck automatically detects a .rsmetacheck.toml (or rsmetacheck.toml) file at the working directory. | No | `rsmetacheck.toml` |
Copy file name to clipboardExpand all lines: entrypoint.sh
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ if [ -n "$INPUT_INPUT" ]; then
9
9
# Note: Do not quote $INPUT_INPUT here in case multiple URLs are passed as spaces
10
10
CMD="$CMD --input $INPUT_INPUT"
11
11
else
12
-
echo"Error: The 'input' argument is required."
12
+
echo"Error: The 'input' argument is required and $GITHUB_REPOSITORY environment variable is not set. Please provide an input or run this action within a GitHub repository context."
0 commit comments