mirror of
https://github.com/FiloSottile/age.git
synced 2026-01-06 20:16:20 +00:00
13 lines
483 B
YAML
13 lines
483 B
YAML
name: Interoperability tests
|
|
on: push
|
|
jobs:
|
|
trigger:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger interoperability tests in str4d/rage
|
|
run: |
|
|
curl -X POST https://api.github.com/repos/str4d/rage/dispatches \
|
|
-H 'Accept: application/vnd.github.v3+json' \
|
|
-H 'Authorization: token ${{ secrets.RAGE_INTEROP_ACCESS_TOKEN }}' \
|
|
--data '{"event_type": "age-interop-request", "client_payload": { "sha": "'"$GITHUB_SHA"'" }}'
|