Skip to content

Commit

Permalink
fix: if statement only support single quote for string literals
Browse files Browse the repository at this point in the history
  • Loading branch information
arunpoudel committed Oct 13, 2023
1 parent b2a4512 commit a072cb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-drafter-go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ concurrency:
cancel-in-progress: false
jobs:
label-pr-go:
if: ${{ github.event_name == "pull_request" }}
if: github.event_name == 'pull_request'
name: Label PR (Golang)
runs-on: ubuntu-latest
steps:
Expand All @@ -45,7 +45,7 @@ jobs:
id: apidiff
continue-on-error: true
- uses: actions/github-script@v6
if: github.event_name == "pull_request"
if: github.event_name == 'pull_request'
env:
LABEL: '${{ steps.apidiff.outputs.semver-type }}'
with:
Expand Down

0 comments on commit a072cb2

Please sign in to comment.