Skip to content

Commit

Permalink
github-script bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vivekshindhe committed Dec 19, 2024
1 parent 8a1ec33 commit e5b1a51
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/version_update_trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
uses: actions/github-script@v6
with:
script: |
const pr_number = ${GITHUB_REF.split('/')[2]};
const message = "pg-core-sdk-version-update\n$version_line\nSDK: React-Native Standard Checkout SDK";
const pr_number = `${GITHUB_REF.split('/')[2]};`
const message = `pg-core-sdk-version-update\n$version_line\nSDK: React-Native Standard Checkout SDK";`
await github.rest.issues.createComment({
owner: context.repo.owner,
Expand Down

0 comments on commit e5b1a51

Please sign in to comment.