diff --git a/.github/workflows/create-replacement-pr.yml b/.github/workflows/create-replacement-pr.yml index be167025f6f9..93c518c93a29 100644 --- a/.github/workflows/create-replacement-pr.yml +++ b/.github/workflows/create-replacement-pr.yml @@ -10,6 +10,7 @@ on: inputs: pull_request: description: Pull request number + type: number required: true autosquash: description: "Squash pull request commits according to Homebrew style? (default: true)" diff --git a/.github/workflows/dispatch-build-bottle.yml b/.github/workflows/dispatch-build-bottle.yml index 0075402fe41a..a1c48c61894d 100644 --- a/.github/workflows/dispatch-build-bottle.yml +++ b/.github/workflows/dispatch-build-bottle.yml @@ -13,10 +13,12 @@ on: required: true timeout: description: "Build timeout (in minutes, default: 60 minutes)" - default: "60" + type: number + default: 60 required: false issue: description: Issue number, where comment on failure would be posted + type: number required: false upload: description: "Upload built bottles? (default: false)" diff --git a/.github/workflows/dispatch-rebottle.yml b/.github/workflows/dispatch-rebottle.yml index 9dc49b392529..fa5dfa33245b 100644 --- a/.github/workflows/dispatch-rebottle.yml +++ b/.github/workflows/dispatch-rebottle.yml @@ -10,10 +10,12 @@ on: required: true timeout: description: "Build timeout (in minutes, default: 60 minutes)" - default: "60" + type: number + default: 60 required: false issue: description: Issue number, where comment on failure would be posted + type: number required: false upload: description: "Upload built bottles? (default: false)" diff --git a/.github/workflows/publish-commit-bottles.yml b/.github/workflows/publish-commit-bottles.yml index d1a92ecdacc8..c44fdb5a0fc8 100644 --- a/.github/workflows/publish-commit-bottles.yml +++ b/.github/workflows/publish-commit-bottles.yml @@ -11,6 +11,7 @@ on: inputs: pull_request: description: Pull request number + type: number required: true large_runner: description: "Run the upload job on a large runner? (default: false)"