mirror of
https://github.com/javalsai/lidm.git
synced 2025-08-31 02:18:00 +02:00
Merge branch 'master' into fix-51
This commit is contained in:
@@ -1,2 +1,2 @@
|
|||||||
[codespell]
|
[codespell]
|
||||||
skip = ./assets/pkg/aur/*/src,./assets/pkg/aur/*/*/objects
|
skip = ./assets/pkg/aur/*/src,./assets/pkg/aur/*/*/objects,./assets/pkg/aur/*/*.tar.*
|
||||||
|
17
.github/workflows/push.yml
vendored
17
.github/workflows/push.yml
vendored
@@ -12,7 +12,24 @@ jobs:
|
|||||||
name: Check
|
name: Check
|
||||||
uses: ./.github/workflows/check.yml
|
uses: ./.github/workflows/check.yml
|
||||||
permissions: write-all
|
permissions: write-all
|
||||||
|
check_paths:
|
||||||
|
name: Paths Filter
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
outputs:
|
||||||
|
code_changed: ${{ steps.filter.outputs.code }}
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- id: filter
|
||||||
|
uses: dorny/paths-filter@v3
|
||||||
|
with:
|
||||||
|
filters: |
|
||||||
|
code:
|
||||||
|
- Makefile
|
||||||
|
- 'src/**'
|
||||||
|
- 'include/**'
|
||||||
build:
|
build:
|
||||||
name: Build
|
name: Build
|
||||||
|
needs: check_paths
|
||||||
|
if: github.event_name != 'push' || needs.check_paths.outputs.code_changed == 'true'
|
||||||
uses: ./.github/workflows/build.yml
|
uses: ./.github/workflows/build.yml
|
||||||
permissions: write-all
|
permissions: write-all
|
||||||
|
Reference in New Issue
Block a user