We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 280977a commit 4478f0cCopy full SHA for 4478f0c
1 file changed
.github/workflows/ci.yml
@@ -2,10 +2,19 @@
2
name: CI
3
4
on:
5
+ create:
6
push:
7
pull_request:
8
9
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
18
test:
19
runs-on: ubuntu-latest
20
0 commit comments