mirror of
https://github.com/luxfi/age.git
synced 2026-07-27 03:39:38 +00:00
18 lines
534 B
YAML
18 lines
534 B
YAML
name: Interoperability tests
|
|
on: push
|
|
permissions:
|
|
contents: read
|
|
jobs:
|
|
trigger:
|
|
name: Trigger
|
|
runs-on: lux-build-amd64
|
|
steps:
|
|
- name: Trigger interoperability tests in str4d/rage
|
|
continue-on-error: true
|
|
run: >
|
|
gh api repos/str4d/rage/dispatches
|
|
--field event_type="age-interop-request"
|
|
--field client_payload[sha]="$GITHUB_SHA"
|
|
env:
|
|
GH_TOKEN: ${{ secrets.RAGE_INTEROP_ACCESS_TOKEN != '' && secrets.RAGE_INTEROP_ACCESS_TOKEN || github.token }}
|