Skip to content

Commit

Permalink
Remove unnecessary workflow input (#1394)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
erikvanoosten authored Nov 16, 2024
1 parent 5f62a09 commit 1c5041e
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/profile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 1c5041e

Please sign in to comment.