Skip to content

Commit fa59523

Browse files
committed
Added ability to manually trigger workflows, enabled workflows for all branches
1 parent 4a4ebf4 commit fa59523

File tree

4 files changed

+14
-11
lines changed

4 files changed

+14
-11
lines changed

.github/workflows/broken-links.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1+
name: broken links?
12
'on':
23
push:
3-
branches: main
4+
branches:
5+
- "**"
46
schedule:
57
- cron: 0 16 * * *
6-
name: broken links?
8+
workflow_dispatch:
79
jobs:
810
linkChecker:
911
runs-on: ubuntu-latest

.github/workflows/lint.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ name: Linter
22
'on':
33
push:
44
branches:
5-
- main
5+
- "**"
66
pull_request:
77
branches:
8-
- main
8+
- "**"
99
schedule:
1010
- cron: 0 16 * * *
11+
workflow_dispatch:
1112
jobs:
1213
sonarcloud:
1314
name: Lint

.github/workflows/sonar.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ name: Sonar
22
'on':
33
push:
44
branches:
5-
- main
5+
- "**"
66
pull_request_target:
77
branches:
8-
- main
8+
- "**"
99
types: [opened, synchronize, reopened, labeled]
1010
schedule:
1111
- cron: 0 16 * * *
12+
workflow_dispatch:
1213
jobs:
1314
sonarcloud:
1415
name: Sonar

.github/workflows/test.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,13 @@ name: Build & Test
22
'on':
33
push:
44
branches:
5-
- main
5+
- "**"
66
pull_request:
7-
types:
8-
- opened
9-
- synchronize
10-
- reopened
7+
branches:
8+
- "**"
119
schedule:
1210
- cron: 0 16 * * *
11+
workflow_dispatch:
1312
jobs:
1413
build:
1514
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)