diff options
| author | caley <195605706+cqley@users.noreply.github.com> | 2026-06-30 14:30:28 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-06-30 14:30:28 +0200 |
| commit | d249fd730905b68b6b72e5ed32bb47347332cb26 (patch) | |
| tree | 8505a4460a87dcf59b72b8d74a0eb19985859278 /.github/workflows | |
| parent | adb140689cb84ec684fd1843d69c2c7f4f1520fe (diff) | |
Create mirror.yml
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/mirror.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 0000000..46d0ecb --- /dev/null +++ b/.github/workflows/mirror.yml @@ -0,0 +1,14 @@ +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 |
