Build Dependent Repos #4
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
# GitHub action to build repos that are dependent on this library | |
name: Build Dependent Repos | |
on: | |
release: | |
types: [published,edited] | |
workflow_dispatch: | |
inputs: | |
message: | |
description: Message to display in job summary | |
required: false | |
type: string | |
jobs: | |
build-dependent-repos: | |
strategy: | |
matrix: | |
include: | |
- name: Trigger build on Outdoor-Weather-Sensor | |
repo: Outdoor-Weather-Sensor | |
name: call-compile-sketches-workflow | |
uses: Andy4495/.github/.github/workflows/build-dependent-repos.yml@main | |
with: | |
message: ${{ inputs.message }} | |
repo-name: ${{ matrix.repo }} | |
secrets: inherit | |