Skip to content

Commit 095f35b

Browse files
goose-guestgoose-guest
authored andcommitted
test: add push trigger for testing on branch
Signed-off-by: goose-guest <goose-guest@goose-guests-MacBook-Air.local>
1 parent 75da59c commit 095f35b

5 files changed

Lines changed: 1421 additions & 1 deletion

File tree

.github/workflows/dispatch-notes-slack.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@
1111
name: Dispatch Notes to Slack
1212

1313
on:
14+
# TEMPORARY: trigger on push to test branch (remove before merging to main)
15+
push:
16+
branches:
17+
- test-dispatch-workflow
18+
1419
workflow_dispatch:
1520
inputs:
1621
repos:
@@ -88,7 +93,7 @@ jobs:
8893
ALL_REPOS="entireio/cli entirehq/entiredb go-git/go-git"
8994
REPOS=()
9095
91-
if [ "$EVENT_NAME" = "schedule" ] || [ "$INPUT_REPOS" = "all" ]; then
96+
if [ "$EVENT_NAME" = "schedule" ] || [ "$EVENT_NAME" = "push" ] || [ "$INPUT_REPOS" = "all" ]; then
9297
for repo in $ALL_REPOS; do
9398
REPOS+=("{\"repo\":\"${repo}\"}")
9499
done

0 commit comments

Comments
 (0)