blob: 86c2293f227ce2a41ae5915caf5c30844a1e341c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
name: mirror to codeberg
on: [push, delete, create]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: pixta-dev/repository-mirroring-action@v1
with:
target_repo_url: git@codeberg.org:caley/dotfiles.git
ssh_private_key: ${{ secrets.ssh_private_key }}
ssh_known_hosts: codeberg.org
|