Skip to content

Commit c5ca957

Browse files
committed
Renamed: CHECKOUT to CHECKOUT_CURRENT_REPO
1 parent 29c8a4a commit c5ca957

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test-mkdocs-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@ jobs:
3232
uses: Reloaded-Project/devops-mkdocs@v1
3333
with:
3434
REQUIREMENTS: docs/requirements.txt
35-
CHECKOUT: false
35+
CHECKOUT_CURRENT_REPO: false

README.MD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ The action supports the following input parameters:
6969
- `REQUIREMENTS`: (Optional) The path to a `requirements.txt` file listing additional Python dependencies. Defaults to `./docs/requirements.txt`.
7070
- `CONFIG_FILE`: (Optional) The path to your MkDocs configuration file. Defaults to `mkdocs.yml` in the repository root.
7171
- `PUBLISH_TO_PAGES`: (Optional) Whether to publish the generated site to GitHub Pages. Defaults to `true`.
72-
- `CHECKOUT`: (Optional) Whether to perform a repository checkout before building the site. Defaults to `true`.
72+
- `CHECKOUT_CURRENT_REPO`: (Optional) Whether to perform a repository checkout before building the site. Defaults to `true`.
7373
- `PRE_BUILD_SCRIPT`: (Optional) The path to a pre-build script to run before building the site.
7474
- `PRE_BUILD_SHELL`: (Optional) The shell to use for running the pre-build script. Defaults to `bash`.
7575

action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ inputs:
2121
required: false
2222
default: true
2323
description: "Whether to publish to GitHub Pages"
24-
CHECKOUT:
24+
CHECKOUT_CURRENT_REPO:
2525
type: boolean
2626
required: false
2727
default: true
@@ -40,7 +40,7 @@ runs:
4040
using: "composite"
4141
steps:
4242
- name: Checkout Repository
43-
if: ${{ inputs.CHECKOUT }}
43+
if: ${{ inputs.CHECKOUT_CURRENT_REPO }}
4444
uses: actions/checkout@v4
4545
with:
4646
submodules: "recursive"

0 commit comments

Comments
 (0)