Update blank.yml

This commit is contained in:
ottop 2024-08-11 23:59:36 +03:00 committed by GitHub
commit d822a21776
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,39 +1,19 @@
# This is a basic workflow to help you get started with Actions # Sync repo to the Codeberg mirror
name: Repo sync GitHub -> Codeberg
name: CI
# Controls when the workflow will run
on: on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push: push:
branches: [ "main" ] branches:
pull_request: - '**'
branches: [ "main" ]
# 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: jobs:
# This workflow contains a single job called "build" codeberg:
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps: steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2
- uses: actions/checkout@v4 with:
fetch-depth: 0
# Runs a single command using the runners shell - uses: yesolutions/mirror-action@master
- name: Run a one-line script with:
run: echo Hello, world! REMOTE: "https://codeberg.org/ottoptj/yamlauncher.git"
GIT_USERNAME: ottop
# Runs a set of commands using the runners shell GIT_PASSWORD: ${{ secrets.GIT_PASSWORD }}
- 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