From cbb843e43769d549618792eff5223370fe40f4d5 Mon Sep 17 00:00:00 2001 From: Alex Gherghisan Date: Wed, 7 Aug 2024 08:34:23 +0100 Subject: [PATCH] feat: trigger deploys manually (#7795) --- .github/workflows/devnet-deploys.yml | 6 ++++-- .github/workflows/metrics-deploys.yml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/devnet-deploys.yml b/.github/workflows/devnet-deploys.yml index 0a2ceb1742d..7280857a12d 100644 --- a/.github/workflows/devnet-deploys.yml +++ b/.github/workflows/devnet-deploys.yml @@ -1,7 +1,9 @@ name: Deploy to network on: - push: - branches: [devnet, provernet, alphanet] + # push: + # branches: [devnet, provernet, alphanet] + workflow_dispatch: + inputs: {} concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/metrics-deploys.yml b/.github/workflows/metrics-deploys.yml index c187f403597..b3552e414d3 100644 --- a/.github/workflows/metrics-deploys.yml +++ b/.github/workflows/metrics-deploys.yml @@ -1,7 +1,9 @@ name: Deploy metrics on: - push: - branches: [devnet] + # push: + # branches: [devnet] + workflow_dispatch: + inputs: {} concurrency: group: ${{ github.workflow }}-${{ github.ref }}