From c2cf2fadf3f74dcb01890715bb70840eb4d0048f Mon Sep 17 00:00:00 2001 From: Daniel Del Core Date: Wed, 21 Aug 2024 23:44:31 +0000 Subject: [PATCH 1/2] Hypermod workflow file --- .github/workflows/hypermod.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/hypermod.yml diff --git a/.github/workflows/hypermod.yml b/.github/workflows/hypermod.yml new file mode 100644 index 0000000..f91a0d8 --- /dev/null +++ b/.github/workflows/hypermod.yml @@ -0,0 +1,22 @@ +name: Hypermod + +on: + workflow_dispatch: + inputs: + deploymentId: + description: "The deployment ID contianing instructions to apply on a repository" + deploymentKey: + description: "The deployment key to authenticate the request" +jobs: + receive_hypermod_event: + permissions: write-all + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Run Hypermod CLI + uses: hypermod-io/action@v1 + with: + deploymentId: ${{ inputs.deploymentId }} + deploymentKey: ${{ inputs.deploymentKey }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From 13f84973dc40b18bf9c59fce85ee3273ff7d1d6b Mon Sep 17 00:00:00 2001 From: Daniel Del Core Date: Fri, 23 Aug 2024 00:44:21 +0000 Subject: [PATCH 2/2] Hypermod workflow file