File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -43,11 +43,11 @@ jobs:
4343 - id : step1
4444 name : Define server branch suffix to use
4545 run : |
46- if [[ ${{ github.event_name == 'push' }} ]] ; then
46+ if ${{ github.event_name == 'push' }}; then
4747 echo "suffix=" >> "$GITHUB_OUTPUT"
48- elif [[ ${{ github.event_name == 'workflow_dispatch' }} ]] ; then
48+ elif ${{ github.event_name == 'workflow_dispatch' }}; then
4949 echo "suffix=${{ github.event.inputs.standalone_branch_suffix }}" >> "$GITHUB_OUTPUT"
50- elif [[ ${{ github.event_name == 'pull_request' }} ]] ; then
50+ elif ${{ github.event_name == 'pull_request' }}; then
5151 # If the PR is server-sync then extract suffix from branch name
5252 sub='maint/update_code_for_'
5353 if [[ "${{ github.head_ref }}" == *"$sub"* ]]; then
You can’t perform that action at this time.
0 commit comments