Skip to content

Commit

Permalink
mirror to codeberg
Browse files Browse the repository at this point in the history
adds action to push commits to codeberg
  • Loading branch information
forrestguice authored Mar 18, 2024
1 parent 213d688 commit 1772e53
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/mirror.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Mirror to Codeberg

on:
workflow_dispatch:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
with:
fetch-depth: 0
- uses: yesolutions/mirror-action@master
with:
REMOTE: 'https://codeberg.org/forrestguice/suntimes.git'
PUSH_ALL_REFS: "false"
GIT_USERNAME: forrestguice
GIT_PASSWORD: ${{ secrets.CB_GIT_PASSWORD }}

0 comments on commit 1772e53

Please sign in to comment.