We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc777d8 commit b94aa25Copy full SHA for b94aa25
.github/workflows/integration.yml
@@ -1,6 +1,11 @@
1
name: integration-tests
2
on:
3
workflow_dispatch:
4
+ inputs:
5
+ branch:
6
+ description: 'Specifies the branch which the integration tests should run on.'
7
+ required: true
8
+ default: 'releases/v4'
9
schedule:
10
- cron: 30 15 * * 0-6
11
push:
@@ -19,7 +24,7 @@ jobs:
19
24
uses: actions/checkout@v2
20
25
21
26
- name: Build and Deploy
22
- uses: JamesIves/github-pages-deploy-action@releases/v4
27
+ uses: JamesIves/github-pages-deploy-action@${{ github.event.inputs.branch }}
23
28
with:
29
git-config-name: Montezuma
30
git-config-email: montezuma@jamesiv.es
0 commit comments