Skip to content
This repository was archived by the owner on Feb 28, 2024. It is now read-only.

Commit 559180c

Browse files
committed
Added ability to manually trigger workflows, enabled workflows for all branches
1 parent b58d225 commit 559180c

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

.github/workflows/broken-links.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
'on':
22
push:
3-
branches: main
3+
branches:
4+
- "**"
45
schedule:
56
- cron: 0 16 * * *
7+
workflow_dispatch:
68
name: broken links?
79
jobs:
810
linkChecker:

.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
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
test:
1314
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)