From 96208e8239c5c064e62856c943ceb409448d535b Mon Sep 17 00:00:00 2001 From: Richard Hansen Date: Tue, 20 Apr 2021 12:19:32 -0400 Subject: [PATCH] tests: Rename workflow to "Upgrade from latest release" --- ...it-pull-update.yml => upgrade-from-latest-release.yml} | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) rename .github/workflows/{major-version-git-pull-update.yml => upgrade-from-latest-release.yml} (94%) diff --git a/.github/workflows/major-version-git-pull-update.yml b/.github/workflows/upgrade-from-latest-release.yml similarity index 94% rename from .github/workflows/major-version-git-pull-update.yml rename to .github/workflows/upgrade-from-latest-release.yml index 5d3b0d748..05e0e8f7d 100644 --- a/.github/workflows/major-version-git-pull-update.yml +++ b/.github/workflows/upgrade-from-latest-release.yml @@ -1,4 +1,4 @@ -name: "In-place git pull from master" +name: "Upgrade from latest release" # any branch is useful for testing before a PR is submitted on: [push, pull_request] @@ -19,7 +19,7 @@ jobs: node: [10, 12, 14, 15] steps: - - name: Checkout master repository + - name: Check out latest release uses: actions/checkout@v2 with: ref: master @@ -60,10 +60,10 @@ jobs: - name: Run the backend tests run: cd src && npm test - - name: Git fetch + - name: Fetch the new Git commits run: git fetch - - name: Checkout this branch over master + - name: Upgrade to the new Git revision run: git checkout "${GITHUB_SHA}" - name: Install all dependencies and symlink for ep_etherpad-lite