From 65c530707258c3349f419436cd682d92969cd4da Mon Sep 17 00:00:00 2001 From: Arona Jones Date: Thu, 28 Jan 2021 01:50:04 +0000 Subject: [PATCH] Still helps if I commit valid YAML --- .github/workflows/django.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index fb8b3b1c..da810c6c 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -9,17 +9,17 @@ on: jobs: dependencies: runs-on: ubuntu-latest - if: "!contains(github.event.head_commit.message, '[ci skip]')" steps: - uses: actions/checkout@v2 - uses: bahmutov/npm-install@v1 - run: node node_modules/gulp/bin/gulp build - name: Cache gulp output - uses: actions/cache@v2 - with: + uses: actions/cache@v2 + with: path: static/ key: static-${{ hashFiles('package-lock.json') }}-${{ hashFiles('RIGS/static') }} test: + if: "!contains(github.event.head_commit.message, '[ci skip]')" needs: dependencies env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}