mirror of
https://github.com/Lissy93/dashy.git
synced 2026-07-31 19:46:02 -04:00
Bumps [lissy93/repo-mirror-action](https://github.com/lissy93/repo-mirror-action) from 1.5.0 to 1.6.0. - [Release notes](https://github.com/lissy93/repo-mirror-action/releases) - [Commits](https://github.com/lissy93/repo-mirror-action/compare/v1.5.0...v1.6.0) --- updated-dependencies: - dependency-name: lissy93/repo-mirror-action dependency-version: 1.6.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
24 lines
577 B
YAML
24 lines
577 B
YAML
# Syncs the full source of the Dashy repo over to our Codeberg mirror
|
|
# For all you non-Microsoft babes!
|
|
# This is then accessible over at https://codeberg.org/alicia/dashy
|
|
name: 🪞 Mirror
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '30 3 * * 0' # At 03:30 on Sunday
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
codeberg:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: lissy93/repo-mirror-action@v1.6.0
|
|
with:
|
|
ssh_key: ${{ secrets.CODEBERG_SSH }}
|
|
host: git@codeberg.org
|
|
user: alicia
|
|
repo: dashy
|
|
force_push: false
|