From f0b3a037addf87174d5bc9615d444120a6dbad25 Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Wed, 16 Oct 2019 15:05:16 +0200 Subject: [PATCH] Revert "Add workflow to update node_modules on master" This reverts commit 31483bd47f8dae5f074750546f4a1fb2568e35d5. --- .github/workflows/{ci.yml => ci.yaml} | 0 .github/workflows/master.yml | 42 --------------------------- 2 files changed, 42 deletions(-) rename .github/workflows/{ci.yml => ci.yaml} (100%) delete mode 100644 .github/workflows/master.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yaml similarity index 100% rename from .github/workflows/ci.yml rename to .github/workflows/ci.yaml diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml deleted file mode 100644 index c04ca95..0000000 --- a/.github/workflows/master.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: master - -on: - push: - branches: - - 'master' - paths: - - 'package.*' - - '.github/workflows/master.yml' - -jobs: - prune: - runs-on: ubuntu-latest - steps: - - - name: Checkout - uses: actions/checkout@v1 - - - # https://github.com/actions/checkout/issues/6 - name: Fix detached HEAD - run: git checkout ${GITHUB_REF#refs/heads/} - - - name: Prune prod - run: | - rm -rf node_modules - npm install --production - - - name: Set up Git - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - git config user.name "${GITHUB_ACTOR}" - git config user.email "${GITHUB_ACTOR}@users.noreply.github.com" - git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git - - - name: Commit and push changes - run: | - git add . - if output=$(git status --porcelain) && [ ! -z "$output" ]; then - git commit -m 'Update node_modules' - git push - fi