Skip to content

Fix typo

Fix typo #4

Workflow file for this run

---
name: Mixins
permissions:
contents: read
on:
# To conserve resources we only run tests against main in PRs
pull_request:
branches:
- main
jobs:
check-for-changed-mixins:
name: Check for changes
runs-on: ubuntu-latest
outputs:
changed-mixins: ${{ steps.changed-mixins.outputs.all_changed_files }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: 1.18
- name: Install CI dependencies
run: make install-ci-deps
- name: Get changed mixins
id: changed-mixins
uses: tj-actions/changed-files@v44
with:
dir_names: true
dir_names_exclude_current_dir: true
dir_names_max_depth: 1
files: |
**-mixin/
matrix: true
- name: List all changed mixins:

Check failure on line 44 in .github/workflows/lint-mixins.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/lint-mixins.yml

Invalid workflow file

You have an error in your yaml syntax on line 44
run: echo '${{ steps.changed-mixins.outputs.all_changed_files }}'