Skip to content

Commit

Permalink
Fix comments
Browse files Browse the repository at this point in the history
  • Loading branch information
yscik committed Oct 5, 2023
1 parent cce0de7 commit 5012d32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Comment on PR
env:
GITHUB_TOKEN: ${{ github.token }}
run: gh pr comment ${{ github.event.number }} --body "🚀 **[Release workflow started](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/job/${{ github.job }})**"
run: gh pr comment ${{ github.event.number }} --body "🚀 **[Release workflow started](https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }})**"
- uses: shivammathur/setup-php@v2
with:
php-version: '7.4'
Expand Down
2 changes: 1 addition & 1 deletion scripts/create-release.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ async function createGithubRelease() {

async function success() {
console.log( chalk.bold.green( `✓ ${ pluginName } ${ pluginVersion } release created!` ) );
const comment = `✅ **[${ pluginName } ${ pluginVersion } release](https://github.com/${ plugin.repo }/releases/tag/${ pluginVersion })** created!"`;
const comment = `✅ **[${ pluginName } ${ pluginVersion } release](https://github.com/${ plugin.repo }/releases/tag/${ pluginVersion })** created!`;
await $`gh pr comment ${ prNumber } -R ${ plugin.repo } --edit-last --body ${ comment }`

}

0 comments on commit 5012d32

Please sign in to comment.