From d350b4e8d214a16b442ae62e8af22bd82acfd4df Mon Sep 17 00:00:00 2001 From: Jessie Mongeon <133128541+jessiemongeon1@users.noreply.github.com> Date: Wed, 20 Nov 2024 10:13:32 -0600 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000000..04325be245 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,21 @@ +name: Confirm documentation has been reviewed. +on: + pull_request: + paths: + - docs/developer-docs/ +jobs: + docscheck: + name: Check PR comments. + runs-on: ubuntu-latest + steps: + - name: Find comment. + uses: peter-evans/find-comment@v3 + with: + body-includes: I agree that I have run the commands and code included in this PR and have confirmed their accuracy and functionality. + - name: Comment on PR. + run: | + echo ${{ steps.fc.outputs.comment-id }} + echo ${{ steps.fc.outputs.comment-node-id }} + echo ${{ steps.fc.outputs.comment-body }} + echo ${{ steps.fc.outputs.comment-author }} + echo ${{ steps.fc.outputs.comment-created-at }}