From e625848a3770e6959ebd7f88c648fb7da1312c44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=A9rence=20Hollander?= Date: Fri, 27 Aug 2021 12:14:54 +0200 Subject: [PATCH] ci: add nrt on commenting ci (#22) --- .github/workflows/ci.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..811828be --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,15 @@ +on: pull_request + +jobs: + test_comment_pr: + runs-on: ubuntu-latest + name: (NRT) Comment PR + steps: + - name: Checkout + uses: actions/checkout@v1 + + - name: Comment + uses: ./ + with: + message: 'Current branch is `${{ github.head_ref }}`.' + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file