Skip to content
This repository has been archived by the owner on Apr 5, 2024. It is now read-only.

Workflow for extended tests #48

Merged
merged 2 commits into from
Aug 16, 2021
Merged
Changes from 1 commit
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
16 changes: 16 additions & 0 deletions .github/workflows/extended_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# SPDX-FileCopyrightText: 2019, 2020 Alvar Penning
oxzi marked this conversation as resolved.
Show resolved Hide resolved
#
# SPDX-License-Identifier: GPL-3.0-or-later

name: Run extended tests

on: push

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Send repository_dispatch event to dtn7-playground repo
run: |
curl -XPOST -u "${{ secrets.PAT_USERNAME }}:${{ secrets.PAT_TOKEN }}" -H "Accept: application/vnd.github.everest-preview+json" -H "Content-Type: application/json" https://api.github.com/repos/dtn7/dtn7-playground/dispatches --data '{"event_type": "run"}'
oxzi marked this conversation as resolved.
Show resolved Hide resolved