Skip to content

Commit 8487270

Browse files
committed
✨ feat(workflows): add workflow_dispatch trigger and push events for auto-merge and CI workflows
1 parent 6a42c12 commit 8487270

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.github/workflows/call-auto-merge.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
on:
2+
workflow_dispatch:
3+
push:
4+
branches:
5+
- main
6+
- stage
7+
- feature/**
8+
- bugfix/**
9+
- fix/**
10+
- hotfix/**
11+
- release/**
12+
- dependabot/**
13+
- renovate/**
14+
- chore/**
15+
- test/**
16+
117
jobs:
218
call-auto-merge:
319
uses: variablesoftware/github-workflows/.github/workflows/auto-merge.yml@main

.github/workflows/ci-semantic-release-sync.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,21 @@
3333
name: CI, Release, and Stage Sync
3434

3535
on:
36+
workflow_dispatch:
37+
push:
38+
branches:
39+
- main
40+
- stage
41+
- feature/**
42+
- bugfix/**
43+
- fix/**
44+
- hotfix/**
45+
- release/**
46+
- dependabot/**
47+
- renovate/**
48+
- chore/**
49+
- test/**
50+
3651
workflow_call:
3752
# Define inputs and secrets here if needed for reuse
3853

0 commit comments

Comments
 (0)