Skip to content

Commit ee28181

Browse files
committed
Added ability to manually trigger workflows, enabled workflows for all branches
1 parent d976c97 commit ee28181

File tree

3 files changed

+10
-6
lines changed

3 files changed

+10
-6
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/sonar-scanner.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
runs-on: ubuntu-latest

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ name: Build & Test
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
build:
1314
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)