From: Joe Orton Date: Mon, 9 Jan 2023 13:33:58 +0000 (+0000) Subject: Limit triggering on non-code changes, try to capture error_log as X-Git-Tag: 2.5.0-alpha2-ci-test-only~160 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aefccde4a7b539e78d8c027abefabd357b2c40e8;p=thirdparty%2Fapache%2Fhttpd.git Limit triggering on non-code changes, try to capture error_log as an artifact on failure. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1906501 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 074304c019e..ad26bc945c5 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -3,8 +3,18 @@ name: Linux on: push: branches: [ "*" ] + paths-ignore: + - 'docs/**' + - STATUS + - CHANGES + - changes-entries/* pull_request: branches: [ "trunk" ] + paths-ignore: + - 'docs/**' + - STATUS + - CHANGES + - changes-entries/* env: MARGS: "-j2" @@ -54,3 +64,9 @@ jobs: run: ./test/travis_before_linux.sh - name: Build and test run: ./test/travis_run_linux.sh + - uses: actions/upload-artifact@v3 + if: failure() + with: + name: error_log + path: test/perl-framework/t/logs/error_log +