Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add payload of repo dispatch #20

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,24 @@ jobs:
export DISPATCH_ACTION="$(echo run_build)"
echo "NEW_DISPATCH_ACTION=$DISPATCH_ACTION" >> $GITHUB_ENV

- name: "create payload with this repository payload"
if: ${{ github.event_name }} != 'repository_dispatch'
run: |
export REPO_PAYLOAD="$(echo {\"ref\": \"${{ github.ref }}\", \"parent\": \"${{ github.repository }}\", \"parent_sha\": \"${{ steps.slug.outputs.sha8 }}\"})"
echo "NEW_REPO_PAYLOAD=$REPO_PAYLOAD" >> $GITHUB_ENV

- name: "create payload with parent repository payload"
if: ${{ github.event_name }} == 'repository_dispatch'
run: |
export REPO_PAYLOAD="$(echo {\"ref\": \"${{ github.ref }}\", \"parent:\" \"${{ github.event.client_payload.parent }}\", \"parent_sha\": \"${{ github.event.client_payload.parent_sha }}\"})"
echo "NEW_REPO_PAYLOAD=$REPO_PAYLOAD" >> $GITHUB_ENV

- name: Repository Dispatch
uses: peter-evans/repository-dispatch@v1
if: env.DISPATCH_TOKEN != null
with:
repository: ${{ github.repository_owner }}/ps2toolchain
token: ${{ secrets.DISPATCH_TOKEN }}
event-type: ${{ env.NEW_DISPATCH_ACTION }}
client-payload: '${{ env.NEW_REPO_PAYLOAD }}'