There was an error while loading. Please reload this page.
2 parents 285582d + 77b3bad commit df856edCopy full SHA for df856ed
1 file changed
.github/workflows/workflow-repository.yml
@@ -0,0 +1,18 @@
1
+name: Workflow Repository Dispatch
2
+permissions:
3
+ contents: read
4
+on:
5
+ repository_dispatch:
6
+ types: [deploy]
7
+jobs:
8
+ deploy-app:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Deploy Application
12
+ run: |
13
+ echo "Deploying application..."
14
+ echo "payload: ${{ github.event.client_payload }}"
15
+ echo "action: ${{ github.event.action }}"
16
+ echo "repository: ${{ github.event.repository }}"
17
+ echo "sender: ${{ github.event.sender }}"
18
+ echo "branch: ${{ github.event.branch }}"
0 commit comments