mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-27 18:10:24 +00:00
CI: Ignore changes to Documentation related files
This will prevent CI from running if: - the only changes included are under the Documentation folder, or - the only changes included are *.md files in the root See: https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#example-excluding-paths
This commit is contained in:
parent
3e536a4cd7
commit
d389fb440f
Notes:
github-actions[bot]
2024-11-23 09:45:50 +00:00
Author: https://github.com/rmg-x Commit: https://github.com/LadybirdBrowser/ladybird/commit/d389fb440fa Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/2504 Reviewed-by: https://github.com/gmta
1 changed files with 9 additions and 1 deletions
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -1,6 +1,14 @@
|
|||
name: CI
|
||||
|
||||
on: [push, pull_request]
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- 'Documentation/**'
|
||||
- '*.md'
|
||||
pull_request:
|
||||
paths-ignore:
|
||||
- 'Documentation/**'
|
||||
- '*.md'
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.head_ref || format('{0}-{1}', github.ref, github.run_number) }}
|
||||
|
|
Loading…
Reference in a new issue