From adb837936c5e32d288f7c74bea79a390bb8d8d87 Mon Sep 17 00:00:00 2001 From: afsardo Date: Fri, 1 Dec 2023 01:54:43 +0000 Subject: [PATCH] ci: add trigger build on astroport dapp github action --- .github/workflows/trigger-build.yml | 41 +++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 .github/workflows/trigger-build.yml diff --git a/.github/workflows/trigger-build.yml b/.github/workflows/trigger-build.yml new file mode 100644 index 00000000..95b3fe8c --- /dev/null +++ b/.github/workflows/trigger-build.yml @@ -0,0 +1,41 @@ +name: Trigger Astroport Dapp Build + +on: + push: + branches: + - main + +jobs: + trigger-build: + runs-on: ubuntu-latest + + steps: + - name: Trigger Main Build + uses: fjogeleit/http-request-action@v1 + with: + url: ${{ secrets.MAIN_BUILD_URL }} + method: GET + + - name: Trigger Neutron Build + uses: fjogeleit/http-request-action@v1 + with: + url: ${{ secrets.NEUTRON_BUILD_URL }} + method: GET + + - name: Trigger Terra Build + uses: fjogeleit/http-request-action@v1 + with: + url: ${{ secrets.TERRA_BUILD_URL }} + method: GET + + - name: Trigger Injective Build + uses: fjogeleit/http-request-action@v1 + with: + url: ${{ secrets.INJECTIVE_BUILD_URL }} + method: GET + + - name: Trigger Sei Build + uses: fjogeleit/http-request-action@v1 + with: + url: ${{ secrets.SEI_BUILD_URL }} + method: GET \ No newline at end of file