We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ea56c7f + 26335bc commit e41cbfeCopy full SHA for e41cbfe
.github/workflows/hypermod.yml
@@ -0,0 +1,22 @@
1
+name: Hypermod
2
+
3
+on:
4
+ workflow_dispatch:
5
+ inputs:
6
+ deploymentId:
7
+ description: "The deployment ID containing instructions to apply on a repository"
8
+ deploymentKey:
9
+ description: "The deployment key to authenticate the request"
10
+jobs:
11
+ receive_hypermod_event:
12
+ permissions: write-all
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Run Hypermod CLI
17
+ uses: hypermod-io/action@v1
18
+ with:
19
+ deploymentId: ${{ inputs.deploymentId }}
20
+ deploymentKey: ${{ inputs.deploymentKey }}
21
+ env:
22
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments