From cc134e064df3fc36e206887033a38790e5e77f67 Mon Sep 17 00:00:00 2001 From: elasticspoon Date: Sat, 12 Oct 2024 23:32:07 -0400 Subject: [PATCH] feat: add comment workflow --- .github/workflows/lint-pr.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/lint-pr.yml diff --git a/.github/workflows/lint-pr.yml b/.github/workflows/lint-pr.yml new file mode 100644 index 0000000000..42e3ba0dea --- /dev/null +++ b/.github/workflows/lint-pr.yml @@ -0,0 +1,23 @@ +name: lint pr + +on: + pull_request: + branches: + - main + pull_request_target: + types: + - edited + +jobs: + ruby_lint: + + runs-on: ubuntu-latest + + steps: + - name: Add comment + uses: elasticspoon/actions-comment-pull-request + id: comment_pr + with: + message: | + Hello world ! :wave: +