From da12789c455b12488665985fa66215a854f7329d Mon Sep 17 00:00:00 2001 From: Sebastiaan de Schaetzen Date: Wed, 23 Apr 2025 11:19:45 +0200 Subject: [PATCH] Merge update and wake script --- .gitea/workflows/{update.yml => update_wake.yml} | 13 ++++++++++--- .gitea/workflows/wake.yml | 13 ------------- 2 files changed, 10 insertions(+), 16 deletions(-) rename .gitea/workflows/{update.yml => update_wake.yml} (69%) delete mode 100644 .gitea/workflows/wake.yml diff --git a/.gitea/workflows/update.yml b/.gitea/workflows/update_wake.yml similarity index 69% rename from .gitea/workflows/update.yml rename to .gitea/workflows/update_wake.yml index 31b53d5..5c37fdd 100644 --- a/.gitea/workflows/update.yml +++ b/.gitea/workflows/update_wake.yml @@ -1,11 +1,11 @@ -name: Update from AUR +name: Update repository and wake runner on: push: branches: - master - + jobs: - build: + update: runs-on: ubuntu-latest steps: - name: Checkout code @@ -22,3 +22,10 @@ jobs: - name: Push changes (if any) run: git push origin master + + wake: + runs-on: ubuntu-latest + steps: + - name: Wakeup Runner + run: | + curl https://idlesleep.wolproxy.seeseepuff.be/status \ No newline at end of file diff --git a/.gitea/workflows/wake.yml b/.gitea/workflows/wake.yml deleted file mode 100644 index b054939..0000000 --- a/.gitea/workflows/wake.yml +++ /dev/null @@ -1,13 +0,0 @@ -name: Wake Runner -on: - push: - branches: - - master - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: Wakeup Runner - run: | - curl https://idlesleep.wolproxy.seeseepuff.be/status \ No newline at end of file