From ac76350570ef42d9adf0b9df30ab0096b66d2a54 Mon Sep 17 00:00:00 2001 From: Alex Resnick Date: Wed, 19 Feb 2025 21:23:12 -0600 Subject: [PATCH 1/2] Update frc-checks.yml --- .github/workflows/frc-checks.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/frc-checks.yml b/.github/workflows/frc-checks.yml index 1bc74ef..2c0a2f6 100644 --- a/.github/workflows/frc-checks.yml +++ b/.github/workflows/frc-checks.yml @@ -5,6 +5,11 @@ name: FRC CI Checks # Controls when the action will run. on: workflow_call: + inputs: + codespell_ignore: + required: false + type: string + default: "" env: PAGES_DIR: "./build/docs/javadoc" @@ -37,6 +42,7 @@ jobs: uses: codespell-project/actions-codespell@master with: check_filenames: true + ignore_words_file: ${{ inputs.input_var }} merge_conflict_job: runs-on: ubuntu-latest name: Find merge conflicts From c4b3f923e82ac5b6aa5ea3ec1d97f9c5c856db98 Mon Sep 17 00:00:00 2001 From: Alex Resnick Date: Wed, 19 Feb 2025 21:27:07 -0600 Subject: [PATCH 2/2] fix variable --- .github/workflows/frc-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/frc-checks.yml b/.github/workflows/frc-checks.yml index 2c0a2f6..26afd9a 100644 --- a/.github/workflows/frc-checks.yml +++ b/.github/workflows/frc-checks.yml @@ -42,7 +42,7 @@ jobs: uses: codespell-project/actions-codespell@master with: check_filenames: true - ignore_words_file: ${{ inputs.input_var }} + ignore_words_file: ${{ inputs.codespell_ignore }} merge_conflict_job: runs-on: ubuntu-latest name: Find merge conflicts