Skip to content

Commit 48d67a1

Browse files
pditommasoclaude
andcommitted
Remove unnecessary should_release flag
- Remove should_release input from release.yml workflow_call - Remove should_release parameter from build.yml - Condition is already handled by if clause in build.yml 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent 445ca05 commit 48d67a1

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,4 @@ jobs:
2929
needs: build
3030
if: github.ref == 'refs/heads/master' && contains(github.event.head_commit.message, '[release]')
3131
uses: ./.github/workflows/release.yml
32-
with:
33-
should_release: true
3432
secrets: inherit

.github/workflows/release.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,9 @@ name: Release
22

33
on:
44
workflow_call:
5-
inputs:
6-
should_release:
7-
required: true
8-
type: boolean
9-
description: 'Whether to perform the release'
105

116
jobs:
127
release:
13-
if: ${{ inputs.should_release }}
148
runs-on: ubuntu-latest
159

1610
steps:

0 commit comments

Comments
 (0)