From d822a21776fd91ec523611a5b5d1bb984d740864 Mon Sep 17 00:00:00 2001 From: ottop Date: Sun, 11 Aug 2024 23:59:36 +0300 Subject: [PATCH] Update blank.yml --- .github/workflows/blank.yml | 46 +++++++++++-------------------------- 1 file changed, 13 insertions(+), 33 deletions(-) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index 5226f31..ab159a3 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -1,39 +1,19 @@ -# This is a basic workflow to help you get started with Actions - -name: CI - -# Controls when the workflow will run +# Sync repo to the Codeberg mirror +name: Repo sync GitHub -> Codeberg on: - # Triggers the workflow on push or pull request events but only for the "main" branch push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] + branches: + - '**' - # Allows you to run this workflow manually from the Actions tab - workflow_dispatch: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on + codeberg: runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v4 - - # Runs a single command using the runners shell - - name: Run a one-line script - run: echo Hello, world! - - # Runs a set of commands using the runners shell - - name: Run a multi-line script - run: | - echo Add other actions to build, - echo test, and deploy your project. - - - name: mirror-repository - uses: yesolutions/mirror-action@v0.7.0 + - uses: actions/checkout@v2 + with: + fetch-depth: 0 + - uses: yesolutions/mirror-action@master + with: + REMOTE: "https://codeberg.org/ottoptj/yamlauncher.git" + GIT_USERNAME: ottop + GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}