-
-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5f728c3
commit 1fcda99
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: Test v3 | ||
on: workflow_dispatch | ||
jobs: | ||
testCreateOrUpdateComment: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Test create | ||
- name: Create comment | ||
uses: peter-evans/create-or-update-comment@v3-dev | ||
id: couc | ||
with: | ||
token: ${{ secrets.ACTIONS_BOT_TOKEN }} | ||
issue-number: 1 | ||
body: | | ||
This is a multi-line test comment | ||
- With GitHub **Markdown** :sparkles: | ||
- Created by [create-or-update-comment][1] | ||
[1]: https://github.com/peter-evans/create-or-update-comment | ||
reactions: '+1' | ||
|
||
# Test update | ||
- name: Update comment | ||
uses: peter-evans/create-or-update-comment@v3-dev | ||
with: | ||
token: ${{ secrets.ACTIONS_BOT_TOKEN }} | ||
comment-id: ${{ steps.couc.outputs.comment-id }} | ||
body: | | ||
**Edit:** Some additional info | ||
reactions: eyes | ||
reactions-edit-mode: replace | ||
|
||
# Test add reactions | ||
- name: Add reactions | ||
uses: peter-evans/create-or-update-comment@v3-dev | ||
with: | ||
token: ${{ secrets.ACTIONS_BOT_TOKEN }} | ||
comment-id: ${{ steps.couc.outputs.comment-id }} | ||
reactions: heart, hooray, laugh | ||
|
||
# Test create with body from file | ||
- name: Create comment | ||
uses: peter-evans/create-or-update-comment@v3-dev | ||
with: | ||
token: ${{ secrets.ACTIONS_BOT_TOKEN }} | ||
issue-number: 1 | ||
body-file: .github/comment-body.md | ||
|
||
# Test create from template | ||
- name: Render template | ||
id: template | ||
uses: chuhlomin/render-template@v1.6 | ||
with: | ||
template: .github/comment-template.md | ||
vars: | | ||
foo: this | ||
bar: that | ||
- name: Create comment | ||
uses: peter-evans/create-or-update-comment@v3-dev | ||
with: | ||
token: ${{ secrets.ACTIONS_BOT_TOKEN }} | ||
issue-number: 1 | ||
body: ${{ steps.template.outputs.result }} |