Skip to content

Commit 7e01d0e

Browse files
committed
Improve ignore documentation.
1 parent 492359b commit 7e01d0e

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

docs/GHAFileExplained.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,13 +109,17 @@ jobs:
109109
# Run the default install.
110110
# Optionally, it is possible to specify a different Moodle repo to use
111111
# (git://github.com/moodle/moodle.git is used by default) and define
112-
# ignore directives or any other env vars for install step.
112+
# ignore directives or any other env vars for install step. For more
113+
# details on configuring for specific requirements please refer to the
114+
# 'Help' page.
113115
#
114116
# env:
115117
# MOODLE_REPO=git://github.com/username/moodle.git
116118
# IGNORE_PATHS: 'ignore'
117119
# IGNORE_NAMES: 'ignore_name.php'
118120
# MUSTACHE_IGNORE_NAMES: 'broken.mustache'
121+
# CODECHECKER_IGNORE_PATHS: 'ignoreme'
122+
# CODECHECKER_IGNORE_NAMES: 'ignoreme_name.php'
119123
- name: Install moodle-plugin-ci
120124
run: |
121125
moodle-plugin-ci install --plugin ./plugin --db-host=127.0.0.1

docs/IgnoringFiles.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ variable names are the same as above, but prefixed with `COMMANDNAME_`. Example
3838
env:
3939
global:
4040
- MOODLE_BRANCH=MOODLE_32_STABLE
41-
- IGNORE_PATHS=vendor/widget,javascript/min-lib.js
42-
- IGNORE_NAMES=*-m.js,bad_lib.php
41+
- CODECHECKER_IGNORE_PATHS=vendor/widget,javascript/min-lib.js
42+
- CODECHECKER_IGNORE_NAMES=*-m.js,bad_lib.php
4343
- PHPUNIT_IGNORE_PATHS=$IGNORE_PATHS,cli
4444
matrix:
4545
- DB=pgsql

0 commit comments

Comments
 (0)