Skip to content

Commit 44c8ea4

Browse files
authored
Merge pull request #34 from testdouble/enable-manual-dispatch-for-azure-vm-and-app-service-tests
Allow manual dispatch of azure app service/vm tests
2 parents a8e2184 + f999cbd commit 44c8ea4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
push:
66
tags:
77
- test
8+
workflow_dispatch:
89

910
permissions:
1011
id-token: write
@@ -29,7 +30,7 @@ jobs:
2930
run: bundle exec rubocop
3031
deploy-infrastructure:
3132
runs-on: ubuntu-latest
32-
if: startsWith(github.ref, 'refs/tags/test')
33+
if: startsWith(github.ref, 'refs/tags/test') || github.event_name == 'workflow_dispatch'
3334
steps:
3435
- uses: actions/checkout@v4
3536
- uses: ./.github/actions/setup-terraform

0 commit comments

Comments
 (0)