Skip to content

Commit

Permalink
fix regex string
Browse files Browse the repository at this point in the history
  • Loading branch information
smritidahal653 committed Aug 14, 2024
1 parent 85c1736 commit 50fbe17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/create-release-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
init_container_version:
description: 'Which init container version are we creating a release pull request for?'
required: true
default: v0.3.0
default: 0.3.0
based_on_branch:
description: 'Which branch should we base the release pull request on?'
required: true
Expand All @@ -28,7 +28,7 @@ jobs:
- name: validate version
run: |
echo "${{ github.event.inputs.release_version }}" | grep -E 'v[0-9]+\.[0-9]+\.[0-9]+$'
echo "${{ github.event.inputs.init_container_version }}" | grep -E '[0-9]+\.[0-9]+\.[0-9]+$'
echo "${{ github.event.inputs.init_container_version }}" | grep -E '^[0-9]+\.[0-9]+\.[0-9]+$'
echo "${{ github.event.inputs.based_on_branch }}" | grep -E '^(master|release-[0-9]+\.[0-9]+\.[0-9]+-[0-9]+\.[0-9]+\.[0-9]+)$'
- uses: actions/checkout@v4
Expand Down

0 comments on commit 50fbe17

Please sign in to comment.