From 1c5041e3eecf3ea3b9a30248206bf977cc69cf08 Mon Sep 17 00:00:00 2001 From: Erik van Oosten Date: Sat, 16 Nov 2024 14:28:19 +0100 Subject: [PATCH] Remove unnecessary workflow input (#1394) When you start a workflow from the GitHub UI, it already asks for a branch/tag/commit. There is no need to add our own input for that. This is a follow-up of #1392. --- .github/workflows/profile.yml | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.github/workflows/profile.yml b/.github/workflows/profile.yml index 9951f0c22..5191dbe13 100644 --- a/.github/workflows/profile.yml +++ b/.github/workflows/profile.yml @@ -4,12 +4,6 @@ on: release: types: [ created ] workflow_dispatch: - inputs: - ref: - description: 'The branch, tag or commit SHA to checkout for profiling. Leave empty for the default branch' - required: true - type: string - default: '' permissions: contents: write @@ -23,7 +17,6 @@ jobs: steps: - uses: actions/checkout@v4 with: - ref: ${{ github.event.inputs.ref }} fetch-depth: 0 - name: Setup Java uses: actions/setup-java@v4