Skip to content

Commit

Permalink
Fix buildNumber GHA workflows input param
Browse files Browse the repository at this point in the history
  • Loading branch information
artembilan committed Oct 23, 2023
1 parent efb082f commit 958a1e7
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/promote-ga-to-central.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
description: 'The Artifactory Build Name'
required: true
buildNumber:
description: 'The Artifactory Build'
description: 'The Artifactory Build Number'
required: true

jobs:
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/promote-milestone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,9 @@ on:
buildName:
description: 'The Artifactory Build Name'
required: true
type: string
buildNumber:
description: 'The Artifactory Build'
description: 'The Artifactory Build Number'
required: true
type: number

jobs:
promote_milestone:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_dispatch:
inputs:
releaseVersion:
description: 'Release version like 3.0.0-M1, 3.1.0-RC1, 3.2.0 etc'
description: 'Release version like 3.0.0-M1, 3.1.0-RC1, 3.2.0 etc.'
required: true
nextDevelopmentVersion:
description: 'Next development version like 3.1.1-SNAPSHOT'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
workflow_call:
inputs:
releaseVersion:
description: 'Release version like 3.0.0-M1, 3.1.0-RC1, 3.2.0 etc'
description: 'Release version like 3.0.0-M1, 3.1.0-RC1, 3.2.0 etc.'
required: true
type: string
nextDevelopmentVersion:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spring-artifactory-promote-central.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ on:
required: true
type: string
buildNumber:
description: 'The Artifactory Build'
description: 'The Artifactory Build Number'
required: true
type: number
type: string

jobs:
release_to_central:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spring-artifactory-promote-milestone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ on:
required: true
type: string
buildNumber:
description: 'The Artifactory Build'
description: 'The Artifactory Build Number'
required: true
type: number
type: string

jobs:
promote_milestone:
Expand Down

0 comments on commit 958a1e7

Please sign in to comment.