mirror of
https://github.com/marocchino/sticky-pull-request-comment.git
synced 2025-12-14 20:41:15 +00:00
22 lines
465 B
YAML
22 lines
465 B
YAML
name: Comment on Pull Request
|
|
on:
|
|
pull_request:
|
|
|
|
jobs:
|
|
comment:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ./
|
|
with:
|
|
header: FromPR
|
|
recreate: true
|
|
message: |
|
|
Test ${{ github.sha }} is successfully ended.
|
|
This is message from PR.
|
|
- uses: ./
|
|
with:
|
|
header: FromPR
|
|
append: true
|
|
message: |
|
|
Append message.
|