Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
verbose: "false"
branch: $GITHUB_REF # useful to run the analysis on the actual branch (default on main)
# config: ".github/workflow/rsmetacheck.toml"
# config-profile: "prerelease" # use to set a profile defined in config. Overides the active_profile defined in rsmetacheck.toml
# config_profile: "prerelease" # use to set a profile defined in config. Overides the active_profile defined in rsmetacheck.toml
```

### Inputs
Expand All @@ -48,7 +48,7 @@ jobs:
| `generate_codemeta` | Generate codemeta files for each repository. | No | `false` |
| `verbose` | Include both detected AND undetected pitfalls in the output JSON-LD. | No | `false` |
| `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` |
| `config-profile` | Specify the profile to use. SHould be defined in the config file | No | |
| `config_profile` | Specify the profile to use. SHould be defined in the config file | No | |

### Outputs

Expand Down
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ if [ -n "$INPUT_BRANCH" ]; then
fi

if [ -n "$INPUT_CONFIG" ]; then
CMD="$CMD --config \"$INPUT_CONFIG_FILE\""
CMD="$CMD --config \"$INPUT_CONFIG\""
fi

if [ -n "$INPUT_CONFIG_PROFILE" ]; then
Expand Down
Loading