Skip to content

Commit 53e0732

Browse files
Merge pull request #74 from abnamro/fix/workflow-triggers
Workflow, ignore .md files and allow manual trigger
2 parents c55ca0f + 95e3738 commit 53e0732

File tree

5 files changed

+15
-0
lines changed

5 files changed

+15
-0
lines changed

.github/workflows/backend-ci.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ on:
66
paths:
77
- .github/workflows/backend-ci.yaml
88
- components/resc-backend/**
9+
- '!**.md'
910
pull_request:
1011
branches: [ "main" ]
1112
paths:
1213
- .github/workflows/backend-ci.yaml
1314
- components/resc-backend/**
15+
- '!**.md'
16+
workflow_dispatch:
1417

1518
env:
1619
RESC_BACKEND_DIR: components/resc-backend

.github/workflows/frontend-ci.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ on:
66
paths:
77
- .github/workflows/frontend-ci.yaml
88
- components/resc-frontend/**
9+
- '!**.md'
910
pull_request:
1011
branches: [ "main" ]
1112
paths:
1213
- .github/workflows/frontend-ci.yaml
1314
- components/resc-frontend/**
15+
- '!**.md'
16+
workflow_dispatch:
1417

1518
env:
1619
RESC_FRONTEND_DIR: components/resc-frontend

.github/workflows/k8-infra-ci.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ on:
66
paths:
77
- .github/workflows/k8-infra-ci.yaml
88
- deployment/kubernetes/**
9+
- '!**.md'
910
pull_request:
1011
branches: [ "main" ]
1112
paths:
1213
- .github/workflows/k8-infra-ci.yaml
1314
- deployment/kubernetes/**
15+
- '!**.md'
16+
workflow_dispatch:
1417

1518
env:
1619
KUBERNETES_INFRA_DIR: deployment/kubernetes

.github/workflows/vcs-scanner-ci.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ on:
66
paths:
77
- .github/workflows/vcs-scanner-ci.yaml
88
- components/resc-vcs-scanner/**
9+
- '!**.md'
910
pull_request:
1011
branches: [ "main" ]
1112
paths:
1213
- .github/workflows/vcs-scanner-ci.yaml
1314
- components/resc-vcs-scanner/**
15+
- '!**.md'
16+
workflow_dispatch:
1417

1518
env:
1619
RESC_VCS_SCANNER_DIR: components/resc-vcs-scanner

.github/workflows/vcs-scraper-ci.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,14 @@ on:
66
paths:
77
- .github/workflows/vcs-scraper-ci.yaml
88
- components/resc-vcs-scraper/**
9+
- '!**.md'
910
pull_request:
1011
branches: [ "main" ]
1112
paths:
1213
- .github/workflows/vcs-scraper-ci.yaml
1314
- components/resc-vcs-scraper/**
15+
- '!**.md'
16+
workflow_dispatch:
1417

1518
env:
1619
RESC_VCS_SCRAPER_DIR: components/resc-vcs-scraper

0 commit comments

Comments
 (0)