Implement generate-ecs-mapping GHA workflow to auto-generate PRs with… #54
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: CI | |
# This workflow runs when any of the following occur: | |
# - On push to branches named after ci/* | |
on: | |
push: | |
# Sequence of patterns matched against refs/heads | |
branches: | |
- "migrate-*" | |
- "ci/*" | |
jobs: | |
call-build-workflow: | |
uses: ./.github/workflows/build.yml | |
secrets: inherit |