diff options
author | luau-project <luau.project@gmail.com> | 2025-03-09 21:49:05 -0300 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2025-03-10 02:13:59 +0000 |
commit | e129b71100a269a46c65884cafa8dd64b5b8cbcd (patch) | |
tree | 900758906d3a106c91795ea071821302e434e69c | |
parent | 0e7672933201814b84768ad67d75d383f5ee7381 (diff) | |
download | luarocks-e129b71100a269a46c65884cafa8dd64b5b8cbcd.tar.gz luarocks-e129b71100a269a46c65884cafa8dd64b5b8cbcd.tar.bz2 luarocks-e129b71100a269a46c65884cafa8dd64b5b8cbcd.zip |
ci: do not run jobs due changes on docs or markdown files
-rw-r--r-- | .github/workflows/test.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f178284b..1479d661 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml | |||
@@ -3,8 +3,14 @@ name: test | |||
3 | on: | 3 | on: |
4 | push: | 4 | push: |
5 | branches: main | 5 | branches: main |
6 | paths-ignore: | ||
7 | - "docs" | ||
8 | - "**/*.md" | ||
6 | pull_request: | 9 | pull_request: |
7 | branches: '*' | 10 | branches: '*' |
11 | paths-ignore: | ||
12 | - "docs" | ||
13 | - "**/*.md" | ||
8 | workflow_dispatch: | 14 | workflow_dispatch: |
9 | branches: '*' | 15 | branches: '*' |
10 | 16 | ||