From 97cfcd82dfdb9a41a98888f144cf48cc4a00f1b5 Mon Sep 17 00:00:00 2001 From: peaceiris <30958501+peaceiris@users.noreply.github.com> Date: Sun, 8 Mar 2020 01:38:50 +0900 Subject: [PATCH] ci: Add commenter workflow --- .github/workflows/commenter.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/commenter.yml diff --git a/.github/workflows/commenter.yml b/.github/workflows/commenter.yml new file mode 100644 index 00000000..d04245b2 --- /dev/null +++ b/.github/workflows/commenter.yml @@ -0,0 +1,22 @@ +name: Commenter + +on: + issues: + types: + - labeled + pull_request: + types: + - labeled + +jobs: + comment: + runs-on: ubuntu-18.04 + steps: + - uses: actions/checkout@v2 + with: + ref: v0.1.2 + + - name: Commenter + uses: ./ + with: + github_token: ${{ secrets.GITHUB_TOKEN }}