From 9b27bb8ac6c2b38f1511a46ea66e58033c9f34f8 Mon Sep 17 00:00:00 2001 From: ASuciuX Date: Fri, 8 Dec 2023 19:20:33 +0200 Subject: [PATCH] feat: added base branch name to mutants logging after merge --- .github/workflows/log-mutants.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/log-mutants.yml b/.github/workflows/log-mutants.yml index 9cd8f5c432..612687993e 100644 --- a/.github/workflows/log-mutants.yml +++ b/.github/workflows/log-mutants.yml @@ -33,7 +33,7 @@ jobs: uses: actions/cache/restore@v3 with: path: ./mutation-testing/packages-output - key: mutants-stable-develop + key: mutants-stable-${{ github.ref_name }} - name: Install cargo-mutants crate run: cargo install cargo-mutants @@ -86,7 +86,7 @@ jobs: continue-on-error: true run: | gh extension install actions/gh-actions-cache - gh actions-cache delete "mutants-stable-develop" --confirm + gh actions-cache delete "mutants-stable-${{ github.ref_name }}" --confirm env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -95,7 +95,7 @@ jobs: uses: actions/cache/save@v3 with: path: ./mutation-testing/packages-output - key: mutants-stable-develop + key: mutants-stable-${{ github.ref_name }} # cache_mutants: # runs-on: ubuntu-latest