Skip to content

Commit 5881fe1

Browse files
authored
Add triggers to .github/workflows/ (#1550)
This PR standardizes GitHub Actions triggers in workflow files within `.github/workflows/`. The goal is to ensure workflows run consistently on `push`, `pull_request`, and `workflow_dispatch` events where appropriate. This is part of a batch of pull requests across repositories owned by the `android` organization on GitHub. **Project Owner:** Please review the changes carefully to ensure they are correct and appropriate for this project before approving and merging. * If you do not think this change is appropriate (e.g., a workflow should NOT run on one of these triggers), please leave a comment explaining why. * If you think the goal is appropriate but notice a mistake in the implementation, please leave a comment detailing the mistake.
2 parents dafa1a6 + 4963577 commit 5881fe1

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/Release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: GitHub Release with APKs
22

33
on:
4+
workflow_dispatch:
45
push:
56
tags:
67
- 'v*'

.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

0 commit comments

Comments
 (0)