Skip to content

Commit 8c9df3a

Browse files
authored
Merge pull request #529 from cartland/on_push_pull_request_workflow_dispatch
Add triggers to .github/workflows/
2 parents c9b4ad6 + da5362a commit 8c9df3a

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

.github/workflows/composescreenshot.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Workflow name
22
name: Compose Preview Screenshot
33
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ main ]
47
# When it will be triggered
58
# And in which branch
69
pull_request:

.github/workflows/copy-branch.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ name: Duplicates main to old master branch
55
# Controls when the action will run. Triggers the workflow on push or pull request
66
# events but only for the main branch
77
on:
8+
workflow_dispatch:
89
push:
910
branches: [ main ]
1011

.github/workflows/gradle-wrapper-validation.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Validate Gradle Wrapper
22

33
on:
4+
workflow_dispatch:
45
push:
56
branches: [ main ]
67

.github/workflows/test-all.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Workflow name
22
name: Build + Test all
33
on:
4+
workflow_dispatch:
5+
push:
6+
branches: [ main ]
47
# When it will be triggered
58
# And in which branch
69
pull_request:

0 commit comments

Comments
 (0)