Skip to content

Commit 7673ad3

Browse files
author
Erik Westrup
committed
feat: Allow triggering test and validate workflow manually
It will be easier debugging issues on checks failing on PRs by running triggering them on the default branch, to rule out if the problem is only in the PR or also on the default branch. Documentation: https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_dispatch Part of #395
1 parent 64db0f9 commit 7673ad3

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
name: Test
22
on:
3+
workflow_dispatch:
34
# Ensure GitHub actions are not run twice for same commits
45
push:
56
branches: [master]

.github/workflows/verify-go-src.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Verify Go client
22

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

0 commit comments

Comments
 (0)