diff options
| author | Marie <marie@kaifa.ch> | 2023-09-25 17:05:42 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-25 17:05:42 +0200 |
| commit | ccd4408cef6f40bcb296e7e25a756efd082cc36f (patch) | |
| tree | d6ea19ac5fffba4c4e582b6b4c0e51febbd4ce88 /.github | |
| parent | ci: add wildcards (diff) | |
| download | sharkey-ccd4408cef6f40bcb296e7e25a756efd082cc36f.tar.gz sharkey-ccd4408cef6f40bcb296e7e25a756efd082cc36f.tar.bz2 sharkey-ccd4408cef6f40bcb296e7e25a756efd082cc36f.zip | |
fix(ci): wildcard at wrong spot
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 1dbd181c76..1f9cb79c9c 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -3,10 +3,10 @@ name: Lint on: push: branches: - - master/** - - develop/** + - master + - develop paths: - - packages + - packages/** pull_request: jobs: |