From 2bf1a4fff7969a5417a311c78d007f4e73617380 Mon Sep 17 00:00:00 2001 From: Thilo Schwarz Date: Sat, 12 Apr 2025 12:03:43 +0200 Subject: [PATCH] Remove GitLab repository cloning workflow This workflow is no longer needed as the repository cloning task has been deprecated or moved. Removing it helps streamline the GitHub Actions setup and eliminates unnecessary maintenance overhead. --- .github/workflows/clone-gitlab.yml | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 .github/workflows/clone-gitlab.yml diff --git a/.github/workflows/clone-gitlab.yml b/.github/workflows/clone-gitlab.yml deleted file mode 100644 index f70f7e4..0000000 --- a/.github/workflows/clone-gitlab.yml +++ /dev/null @@ -1,20 +0,0 @@ -name: Clone GitLab Repository Daily - -# Schedule the workflow to run daily at midnight -on: - schedule: - - cron: '0 0 * * *' # Adjust the cron schedule as required (UTC) - -jobs: - clone-gitlab-repo: - name: Clone GitLab Repository - runs-on: ubuntu-latest - - steps: - - name: Clone GitLab repository - env: - # Set the GitLab access token in GitHub secrets as `GITLAB_TOKEN` - GITLAB_TOKEN: ${{ secrets.GITLAB_TOKEN }} - run: | - # Authenticate using GitLab token - git clone https://gitlab-ci-token:${GITLAB_TOKEN}@thischwa/CloudflareDNS-java.git cloned-repo