From 88ac8414a690be61e0250ce251ceda0d80ff35fe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20Fran=C3=A7ois?= Date: Mon, 29 Jun 2026 12:20:04 +0200 Subject: [PATCH 1/2] doc: fix typo in README about config --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fdd3681..5adab71 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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 From 046dee9830bbddf7343da8332bd190d8f61aed2b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=20Fran=C3=A7ois?= Date: Wed, 1 Jul 2026 09:00:47 +0200 Subject: [PATCH 2/2] fix: typos in entrypoint.sh config was not passed correctly --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 36e12af..833b737 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -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