diff --git a/.github/workflows/comment-preview.yml b/.github/workflows/comment-preview.yml new file mode 100644 index 000000000..142114d99 --- /dev/null +++ b/.github/workflows/comment-preview.yml @@ -0,0 +1,15 @@ +on: push + +jobs: + example_comment_pr: + runs-on: ubuntu-latest + 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: + filePath: packages/utils/src/lib/reports/__snapshots__/report-diff-mixed.md + pr_number: 566 + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}