Skip to content

Commit 9487629

Browse files
committed
ci: allow manual run of seo-production via workflow_dispatch
1 parent 607491c commit 9487629

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name: CI
33
on:
44
push:
55
pull_request:
6+
workflow_dispatch:
67

78
jobs:
89
quality:
@@ -92,7 +93,7 @@ jobs:
9293
format: clover
9394

9495
seo-production:
95-
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
96+
if: github.event_name == 'workflow_dispatch' || (github.event_name == 'push' && github.ref == 'refs/heads/master')
9697
runs-on: ubuntu-latest
9798

9899
steps:

0 commit comments

Comments
 (0)