From 4ca12024b63b12f607804c739422c25ee2e50bf7 Mon Sep 17 00:00:00 2001 From: "CanbiZ (MickLesk)" <47820557+MickLesk@users.noreply.github.com> Date: Tue, 20 Jan 2026 08:36:00 +0100 Subject: [PATCH] add checkout step --- .github/workflows/clear_old_branches.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/clear_old_branches.yml b/.github/workflows/clear_old_branches.yml index 451aaa139..b8fbf61c5 100644 --- a/.github/workflows/clear_old_branches.yml +++ b/.github/workflows/clear_old_branches.yml @@ -1,8 +1,8 @@ -name: Cleanup merged branches +name: Cleanup Branches (Merged or Closed) on: schedule: - - cron: "0 3 * * *" # täglich um 03:00 UTC + - cron: "0 3 * * *" # daily at 03:00 UTC workflow_dispatch: permissions: @@ -14,6 +14,9 @@ jobs: runs-on: ubuntu-latest steps: + - name: Checkout repository + uses: actions/checkout@v4 + - name: Delete merged or closed branches older than 7 days env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}