Skip to content

Commit 93bd557

Browse files
GHA-215 Fix typos in input names (#118)
1 parent d4cf9c0 commit 93bd557

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.claude/skills/automated-release-setup/SKILL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
149149
#### 3.2 Create `automated-release{EXT}` (standard, no SonarLint, **with version bump**)
150150

151-
When the user wants version bumping, add `bump-version: true` (and optionally `bump-version-pr-lables`) to the `with:` block:
151+
When the user wants version bumping, add `bump-version: true` (and optionally `bump-version-pr-labels`) to the `with:` block:
152152

153153
```yaml
154154
name: Automated Release
@@ -216,7 +216,7 @@ jobs:
216216
use-jira-sandbox: ${{ github.event.inputs.dry-run == 'true' }}
217217
is-draft-release: ${{ github.event.inputs.dry-run == 'true' }}
218218
bump-version: true
219-
bump-version-pr-lables: "${BUMP_VERSION_PR_LABELS}" # omit this line if no labels
219+
bump-version-pr-labels: "${BUMP_VERSION_PR_LABELS}" # omit this line if no labels
220220
```
221221

222222
#### 3.3 Create `automated-release{EXT}` (with SonarLint integration, no version bump)
@@ -315,7 +315,7 @@ jobs:
315315

316316
#### 3.4 Create `automated-release{EXT}` (with SonarLint integration **and** version bump)
317317

318-
Add `bump-version: true` (and optionally `bump-version-pr-lables`) to the SonarLint variant's `with:` block, same as in 3.2.
318+
Add `bump-version: true` (and optionally `bump-version-pr-labels`) to the SonarLint variant's `with:` block, same as in 3.2.
319319

320320
### Step 4: Update release.yml
321321

.github/workflows/automated-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,11 +140,11 @@ on:
140140
required: false
141141
type: boolean
142142
default: false
143-
bump-version-pr-lables:
143+
bump-version-pr-labels:
144144
description: "Labels to apply to the version bump pull request if bump-version is true. For example, 'update-next-dev,skip-qa'."
145145
required: false
146146
type: string
147-
bump-version-exlusions:
147+
bump-version-exclusions:
148148
description: "Comma-separated list of module to exclude from the version bump commit."
149149
required: false
150150
type: string
@@ -516,8 +516,8 @@ jobs:
516516
uses: SonarSource/release-github-actions/bump-version@v1
517517
with:
518518
version: ${{ steps.normalize.outputs.version || needs.release-in-jira.outputs.new-version }}
519-
pr-labels: ${{ inputs.bump-version-pr-lables }}
520-
excluded-modules: ${{ inputs.bump-version-exlusions }}
519+
pr-labels: ${{ inputs.bump-version-pr-labels }}
520+
excluded-modules: ${{ inputs.bump-version-exclusions }}
521521
base-branch: ${{ inputs.branch }}
522522
tool: ${{ inputs.bump-version-tool }}
523523

0 commit comments

Comments
 (0)