From e53f7fdf0d97250dec56b797fdef53b6175c2883 Mon Sep 17 00:00:00 2001 From: Trey Evans Date: Thu, 16 Nov 2023 11:17:56 -0500 Subject: [PATCH] Add downstream build check. --- .github/workflows/downstream.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/downstream.yml diff --git a/.github/workflows/downstream.yml b/.github/workflows/downstream.yml new file mode 100644 index 0000000..4b352d1 --- /dev/null +++ b/.github/workflows/downstream.yml @@ -0,0 +1,24 @@ +name: Downstream + +on: + workflow_dispatch: + branches: + - trunk + push: + branches: + - trunk + +jobs: + check-dependencies: + runs-on: ubuntu-latest + steps: + - name: Bundle Dependency Checks + uses: convictional/trigger-workflow-and-wait@v1.6.1 + with: + owner: ideacrew + repo: ic_dependency_jamboree + github_token: ${{ secrets.GH_PAT }} + workflow_file_name: test_bundle.yml + ref: trunk + propagate_failure: false +