Skip to content

Commit 0f8bc5f

Browse files
committed
Fix typo
1 parent 24bbda0 commit 0f8bc5f

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/lint-mixins.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: "Lint Mixins"
2+
name: Mixin
33

44
permissions:
55
contents: read
@@ -8,11 +8,11 @@ on:
88
# To conserve resources we only run tests against main in PRs
99
pull_request:
1010
branches:
11-
- main
11+
- master
1212

1313
jobs:
1414
check-for-changed-mixins:
15-
name: Check for changed mixins
15+
name: Check for changes
1616
runs-on: ubuntu-latest
1717
outputs:
1818
changed-mixins: ${{ steps.changed-mixins.outputs.all_changed_files }}
@@ -37,8 +37,9 @@ jobs:
3737
dir_names: true
3838
dir_names_exclude_current_dir: true
3939
dir_names_max_depth: 1
40-
files: **-mixin/
40+
files: |
41+
**-mixin/
4142
matrix: true
4243

43-
- name: List all changed mixins:
44+
- name: List all changed mixins
4445
run: echo '${{ steps.changed-mixins.outputs.all_changed_files }}'

0 commit comments

Comments
 (0)