Skip to content

Commit

Permalink
Comment out workflow for now
Browse files Browse the repository at this point in the history
  • Loading branch information
HardeepAsrani committed Dec 21, 2023
1 parent e974733 commit e363809
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions .github/workflows/create-build-url.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,19 +84,19 @@ jobs:
body="${body//$'\n'/'%0A'}"
echo "::set-output name=body::$body"
- name: Create comment on PR with links to plugin builds
if: ${{ steps.find-comment.outputs.comment-id == '' }}
uses: peter-evans/create-or-update-comment@v3
with:
issue-number: ${{ steps.get-pr-number.outputs.num }}
token: ${{ secrets.BOT_TOKEN }}
body: ${{ steps.get-comment-body.outputs.body }}
# - name: Create comment on PR with links to plugin builds
# if: ${{ steps.find-comment.outputs.comment-id == '' }}
# uses: peter-evans/create-or-update-comment@v2
# with:
# issue-number: ${{ steps.get-pr-number.outputs.num }}
# token: ${{ secrets.BOT_TOKEN }}
# body: ${{ steps.get-comment-body.outputs.body }}

- name: Update comment on PR with links to plugin builds
if: ${{ steps.find-comment.outputs.comment-id != '' }}
uses: peter-evans/create-or-update-comment@v3
with:
comment-id: ${{ steps.find-comment.outputs.comment-id }}
edit-mode: replace
token: ${{ secrets.BOT_TOKEN }}
body: ${{ steps.get-comment-body.outputs.body }}
# - name: Update comment on PR with links to plugin builds
# if: ${{ steps.find-comment.outputs.comment-id != '' }}
# uses: peter-evans/create-or-update-comment@v2
# with:
# comment-id: ${{ steps.find-comment.outputs.comment-id }}
# edit-mode: replace
# token: ${{ secrets.BOT_TOKEN }}
# body: ${{ steps.get-comment-body.outputs.body }}

0 comments on commit e363809

Please sign in to comment.