Skip to content

Commit 4478f0c

Browse files
committed
chore(ci): add branch create debug trigger
1 parent 280977a commit 4478f0c

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,19 @@
22
name: CI
33

44
on:
5+
create:
56
push:
67
pull_request:
78

89
jobs:
10+
branch-create-debug:
11+
if: github.event_name == 'create' && github.event.ref_type == 'branch'
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Log created branch
16+
run: echo "Created branch ${{ github.event.ref }} from ${{ github.repository }}"
17+
918
test:
1019
runs-on: ubuntu-latest
1120

0 commit comments

Comments
 (0)