This repository has been archived by the owner on Nov 30, 2023. It is now read-only.
removed github workflows #3
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: "Submodule Notify Parent" | |
on: [push, workflow_dispatch] | |
jobs: | |
dispatch: | |
runs-on: ubuntu-latest | |
name: "Submodule Notify Parent" | |
strategy: | |
matrix: | |
repo: ["unicam-complex-system/camera-security-system-monorepo"] | |
steps: | |
- name: Push to repo | |
uses: peter-evans/repository-dispatch@v1 | |
with: | |
token: ${{ secrets.PAT }} | |
repository: ${{ matrix.repo }} | |
event-type: update | |
client-payload: '{"module":"${{ github.repository }}","sha":"${{ github.sha }}"}' |