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