From 869a503d708f1e8eee2f2414047a92da1817cf2c Mon Sep 17 00:00:00 2001 From: LeoTK <41605307+LeoTKBR@users.noreply.github.com> Date: Sat, 23 Nov 2024 19:50:16 -0300 Subject: [PATCH] Delete .github/workflows/autosync.yml --- .github/workflows/autosync.yml | 43 ---------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 .github/workflows/autosync.yml diff --git a/.github/workflows/autosync.yml b/.github/workflows/autosync.yml deleted file mode 100644 index 2604437a0d6..00000000000 --- a/.github/workflows/autosync.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Auto - Sync Fork - -env: - # Required, URL to upstream (fork base) - UPSTREAM_URL: "https://github.com/opentibiabr/canary.git" - # Required, token to authenticate bot, could use ${{ secrets.GITHUB_TOKEN }} - # Over here, we use a PAT instead to authenticate workflow file changes. - WORKFLOW_TOKEN: ${{ secrets.WORKFLOW_TOKEN }} - # Optional, defaults to main - UPSTREAM_BRANCH: "main" - # Optional, defaults to UPSTREAM_BRANCH - DOWNSTREAM_BRANCH: "" - # Optional fetch arguments - FETCH_ARGS: "" - # Optional merge arguments - MERGE_ARGS: "" - # Optional push arguments - PUSH_ARGS: "" - # Optional toggle to spawn time logs (keeps action active) - SPAWN_LOGS: "false" # "true" or "false" - -# This runs every day on 1801 UTC -on: - schedule: - - cron: '0 */4 * * *' - # Allows manual workflow run (must in default branch to work) - workflow_dispatch: - -jobs: - build: - runs-on: ubuntu-latest - steps: - - name: GitHub Sync to Upstream Repository - uses: dabreadman/sync-upstream-repo@v1.3.0 - with: - upstream_repo: ${{ env.UPSTREAM_URL }} - upstream_branch: ${{ env.UPSTREAM_BRANCH }} - downstream_branch: ${{ env.DOWNSTREAM_BRANCH }} - token: ${{ env.WORKFLOW_TOKEN }} - fetch_args: ${{ env.FETCH_ARGS }} - merge_args: ${{ env.MERGE_ARGS }} - push_args: ${{ env.PUSH_ARGS }} - spawn_logs: ${{ env.SPAWN_LOGS }}