removing legacy kernel for now #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dispatch Helper | |
on: | |
push: | |
release: | |
deployment: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
repository_dispatch: | |
name: 📢 Run repository dispatch to default fork branch | |
if: ${{ github.repository_owner != 'armbian' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Dispatch event on forked repostitory | |
uses: peter-evans/repository-dispatch@v3 | |
with: | |
token: ${{ secrets.ARMBIAN_SELF_DISPATCH_TOKEN }} | |
repository: ${{ github.repository }} | |
event-type: custom | |
client-payload: > | |
{ | |
"event": "${{ github.event_name }}", | |
"ref": "${{ github.ref }}", | |
"base_ref": "${{ github.base_ref }}", | |
"sha": "${{ github.sha }}", | |
"event_details": ${{ toJson(github.event) }} | |
} |