Update testing_flow.yml

This commit is contained in:
jstan-isch 2023-01-25 10:56:55 -06:00 committed by GitHub
parent 240624fb1c
commit 6496dc318b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -19,7 +19,7 @@ jobs:
- name: Create a file - name: Create a file
run: | run: |
touch file8.txt touch file8.txt
echo "added dummy file 1" > file8.txt echo "added dummy file 2" > file8.txt
- name: commit and push - name: commit and push
run: | run: |
@ -28,3 +28,10 @@ jobs:
git add . git add .
git commit -m "generated" git commit -m "generated"
git push 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"}'