diff --git a/.github/workflows/mirror_demos.yaml b/.github/workflows/mirror_demos.yaml index ab8cf89ce4b..2d434c56a5a 100644 --- a/.github/workflows/mirror_demos.yaml +++ b/.github/workflows/mirror_demos.yaml @@ -2,12 +2,6 @@ name: mirror-demos on: workflow_dispatch: - inputs: - dry_run: - description: 'Run the sync in dry-run mode' - required: false - default: false - type: boolean permissions: contents: read jobs: @@ -42,4 +36,4 @@ jobs: shell: bash run: | cd scripts/regclient - regbot once ${{ github.event.inputs.dry_run && '--dry-run' || '' }} --config regbot_demos.yaml + regbot once --config regbot_demos.yaml diff --git a/.github/workflows/mirror_deps.yaml b/.github/workflows/mirror_deps.yaml index 9d5b1fbee04..01fe6212e73 100644 --- a/.github/workflows/mirror_deps.yaml +++ b/.github/workflows/mirror_deps.yaml @@ -2,12 +2,6 @@ name: mirror-deps on: workflow_dispatch: - inputs: - dry_run: - description: 'Run the sync in dry-run mode' - required: false - default: false - type: boolean permissions: contents: read jobs: @@ -42,4 +36,4 @@ jobs: shell: bash run: | cd scripts/regclient - regbot once ${{ github.event.inputs.dry_run && '--dry-run' || '' }} --config regbot_deps.yaml + regbot once --config regbot_deps.yaml