Home > Mobile >  Trigger GitHub Action in Submodules from Parent Repo Action
Trigger GitHub Action in Submodules from Parent Repo Action

Time:05-05

Let's say that I have two repositories, parentrepo and childrepo. childrepo has a github action (example from the docs):

name: GitHub Actions Demo
on: workflow_dispatch
jobs:
  Explore-GitHub-Actions:
    runs-on: ubuntu-latest
    steps:
      - run: echo "           
  • Related