From 0bda5274a21b2cd4f52b2735387e6fe1ab13884c Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Mon, 4 May 2020 18:03:09 +0900 Subject: [PATCH] Update workflows --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a73045c..11eabd7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,13 +34,19 @@ jobs: name: dist path: dist - - name: Repository Dispatch + - name: Test repository dispatch uses: ./ with: token: ${{ secrets.REPO_ACCESS_TOKEN }} event-type: tests client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}' + - name: Test repository dispatch (default payload) + uses: ./ + with: + token: ${{ secrets.REPO_ACCESS_TOKEN }} + event-type: tests + package: if: github.event_name == 'push' && github.ref == 'refs/heads/master' needs: [test]