From f320682591ce4642f237b3d0e8357576fd8aa6f2 Mon Sep 17 00:00:00 2001 From: Cypress Reed Date: Fri, 10 Jul 2026 15:34:22 -0600 Subject: [PATCH 1/4] switch to reusable mirror action --- .github/workflows/mirror.yml | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index 7b1394e..ba11762 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -1,18 +1,7 @@ name: mirror -permissions: - contents: read - on: [push] jobs: mirror: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 - with: - fetch-depth: 0 - - uses: yesolutions/mirror-action@1708f16cdb28634fd3ba10c5c79abc91f5578a14 # v0.7.0 - with: - REMOTE: "https://codeberg.org/FyraStack/dashboard.git" - GIT_USERNAME: ${{ secrets.GIT_USERNAME }} - GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }} + uses: FyraStack/actions/.github/workflows/mirror.yml@main + secrets: inherit From a01169e54bf56a07fe925b9122e62a699d837647 Mon Sep 17 00:00:00 2001 From: Cypress Reed Date: Fri, 10 Jul 2026 15:45:11 -0600 Subject: [PATCH 2/4] Update mirror.yml --- .github/workflows/mirror.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index ba11762..d68f9d7 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -3,5 +3,5 @@ on: [push] jobs: mirror: - uses: FyraStack/actions/.github/workflows/mirror.yml@main + uses: FyraLabs/actions/.github/workflows/mirror.yml@main secrets: inherit From 94241bacb5ab486ca630ed7fcfce574ad4857715 Mon Sep 17 00:00:00 2001 From: Cypress Reed Date: Fri, 10 Jul 2026 15:46:15 -0600 Subject: [PATCH 3/4] Update mirror.yml --- .github/workflows/mirror.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index d68f9d7..6ecf0ff 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -1,6 +1,9 @@ name: mirror on: [push] +permissions: + contents: read + jobs: mirror: uses: FyraLabs/actions/.github/workflows/mirror.yml@main From f6317a06466b510a1e009a5aa8e6eb5b2c49f372 Mon Sep 17 00:00:00 2001 From: Cypress Reed Date: Fri, 10 Jul 2026 15:59:44 -0600 Subject: [PATCH 4/4] Update mirror.yml --- .github/workflows/mirror.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml index 6ecf0ff..391cb3e 100644 --- a/.github/workflows/mirror.yml +++ b/.github/workflows/mirror.yml @@ -7,4 +7,6 @@ permissions: jobs: mirror: uses: FyraLabs/actions/.github/workflows/mirror.yml@main - secrets: inherit + secrets: + GIT_USERNAME: ${{ secrets.GIT_USERNAME }} + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}