From 6496dc318b96f62d295f54e1be101530779d0a4b Mon Sep 17 00:00:00 2001 From: jstan-isch <52019536+jstan-isch@users.noreply.github.com> Date: Wed, 25 Jan 2023 10:56:55 -0600 Subject: [PATCH] Update testing_flow.yml --- .github/workflows/testing_flow.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testing_flow.yml b/.github/workflows/testing_flow.yml index 9620f2424..f473522ed 100644 --- a/.github/workflows/testing_flow.yml +++ b/.github/workflows/testing_flow.yml @@ -19,7 +19,7 @@ jobs: - name: Create a file run: | touch file8.txt - echo "added dummy file 1" > file8.txt + echo "added dummy file 2" > file8.txt - name: commit and push run: | @@ -28,3 +28,10 @@ jobs: git add . git commit -m "generated" git push + + - name: Repository Dispatch + uses: peter-evans/repository-dispatch@v1 + with: + token: ${{ secrets.MY_PAT }} + event-type: my-event + client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}", "test": "test message"}'