Skip to content

Commit 65d5744

Browse files
fix: Check Licenses branch name trigger pattern
Signed-off-by: Andy Jakubowski <[email protected]>
1 parent f47ba96 commit 65d5744

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/check-licenses.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: Check Licenses
22
on:
33
push:
4-
branches: ["main"]
4+
branches: ['main']
55
pull_request:
6-
branches: ["*"]
6+
branches: ['**']
77

88
concurrency:
99
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
@@ -18,7 +18,6 @@ jobs:
1818
uses: actions/checkout@v4
1919
- name: Base Setup
2020
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
21-
21+
2222
- name: Check Licenses
2323
run: yarn check-licenses
24-

0 commit comments

Comments
 (0)