From 7231c842c0f726ffe694e14ccbea43d4d2c678b0 Mon Sep 17 00:00:00 2001 From: Hayden <64056131+hay-kot@users.noreply.github.com> Date: Sat, 10 Sep 2022 11:10:28 -0800 Subject: [PATCH] use relative refs --- .github/workflows/nightly.yml | 6 +++--- .github/workflows/pull-requests.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 4b208f5499d1..8e99d40525b1 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -8,15 +8,15 @@ on: jobs: backend-tests: name: "Backend Server Tests" - uses: hay-kot/mealie/.github/workflows/partial-backend.yml@mealie-next + uses: ./.github/workflows/partial-backend.yml frontend-tests: name: "Frontend and End-to-End Tests" - uses: hay-kot/mealie/.github/workflows/partial-frontend.yml@mealie-next + uses: ./.github/workflows/partial-frontend.yml build-release: name: Build Tagged Release - uses: hay-kot/mealie/.github/workflows/partial-builder.yml@mealie-next + uses: ./.github/workflows/partial-builder.yml needs: - frontend-tests - backend-tests diff --git a/.github/workflows/pull-requests.yml b/.github/workflows/pull-requests.yml index 1e5b9c8917d6..ff69b79a3b8b 100644 --- a/.github/workflows/pull-requests.yml +++ b/.github/workflows/pull-requests.yml @@ -8,8 +8,8 @@ on: jobs: backend-tests: name: "Backend Server Tests" - uses: hay-kot/mealie/.github/workflows/partial-backend.yml@mealie-next + uses: ./.github/workflows/partial-backend.yml frontend-tests: name: "Frontend and End-to-End Tests" - uses: hay-kot/mealie/.github/workflows/partial-frontend.yml@mealie-next + uses: ./.github/workflows/partial-frontend.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ef1561e76a9e..455d5df7ac53 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,11 +7,11 @@ on: jobs: backend-tests: name: "Backend Server Tests" - uses: hay-kot/mealie/.github/workflows/partial-backend.yml@mealie-next + uses: ./.github/workflows/partial-backend.yml frontend-tests: name: "Frontend and End-to-End Tests" - uses: hay-kot/mealie/.github/workflows/partial-frontend.yml@mealie-next + uses: ./.github/workflows/partial-frontend.yml get-release: name: "Get Releave Tag" @@ -28,7 +28,7 @@ jobs: releases-only: true # We know that all relevant tags have a GitHub release for them. build-release: name: Build Tagged Release - uses: hay-kot/mealie/.github/workflows/partial-builder.yml@mealie-next + uses: ./.github/workflows/partial-builder.yml@mealie-next needs: - get-release with: