From 5f0e30f05a72f2ef2aebda0a247a888e23b91c67 Mon Sep 17 00:00:00 2001 From: Daniel Del Core Date: Mon, 21 Jul 2025 01:48:51 +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..6c1aba7 --- /dev/null +++ b/.github/workflows/hypermod.yml @@ -0,0 +1,22 @@ +name: Hypermod + +on: + workflow_dispatch: + inputs: + deploymentId: + description: "The deployment ID containing 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 db80568e8445d699dad0512aa3599ffdba7ba3dc Mon Sep 17 00:00:00 2001 From: Daniel Del Core Date: Thu, 31 Jul 2025 22:48:56 +0000 Subject: [PATCH 2/2] Hypermod workflow file