Commit a0071443 authored by Protocole's avatar Protocole
Browse files

Merge branch '293-pipeline-hub-fix-link_checker' into 'latest'

Resolve "Pipeline HUB, fix link_checker"

Closes #293

See merge request r2devops/hub!155
parents 7c1997a2 d17a7314
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2,4 +2,4 @@ site/
docs/jobs/**/*.md
docs/images/jobs
**/.DS_Store
.idea
 No newline at end of file
+5 −0
Original line number Diff line number Diff line
@@ -145,6 +145,11 @@ job_image_scan:
    expire_in: 30 days
    when: always

links_checker:
  variables:
    LICHE_EXCLUDE: "^[^http]"
    FAIL_ON_BROKEN: "true"
  allow_failure: true

# See https://docs.gitlab.com/ee/api/labels.html
job_labels:
+1 −1
Original line number Diff line number Diff line
@@ -63,7 +63,7 @@ links_checker:
                    add_option "${CI_PROJECT_DIR}/${i}"
                done
            fi
        - if [ ! -z ${LICHE_EXCLUDE} ]; then add_option "-x \"${LICHE_EXCLUDE}\""; fi
        - if [ ! -z ${LICHE_EXCLUDE} ]; then add_option "-x ${LICHE_EXCLUDE}"; fi
        - if [ ${LICHE_PRINT_OK} = "true" ]; then add_option "-v"; fi
        - if [ ${LICHE_RECURSIVE} = "true" ]; then add_option "-r"; fi
        
+1 −0
Original line number Diff line number Diff line
* Fix `LICHE_EXCLUDE` feature
 No newline at end of file