Skip to content

Commit

Permalink
Create commentPR.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ptitloup authored Sep 21, 2023
1 parent c4d132c commit 25e32c2
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/commentPR.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
name: Test Comment PR
on: pull_request

jobs:
example_comment_pr:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
repository-projects: write
issues: write
name: An example job to comment a PR
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Comment PR
uses: thollander/actions-comment-pull-request@v2
with:
message: 'Hello world ! :wave:'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 25e32c2

Please sign in to comment.