mirror of
https://github.com/mailscope/kumomta.git
synced 2026-08-20 03:18:18 +00:00
41a96bcb0f
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
31 lines
663 B
YAML
31 lines
663 B
YAML
name: 'Mirror'
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches-ignore:
|
|
- 'dependabot/**'
|
|
tags: ['**']
|
|
|
|
jobs:
|
|
mirror:
|
|
name: 'Mirror'
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 5
|
|
|
|
steps:
|
|
- name: 'Checkout'
|
|
uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: 'Mirror to Codeberg'
|
|
uses: cssnr/mirror-repository-action@v1
|
|
with:
|
|
#url: https://codeberg.org/cssnr/mirror-repository-action
|
|
host: https://codeberg.org
|
|
owner: KumoCorp
|
|
repo: kumomta
|
|
username: ${{ secrets.CODEBERG_USERNAME }}
|
|
password: ${{ secrets.CODEBERG_TOKEN }}
|