17 lines
406 B
YAML
17 lines
406 B
YAML
on: [workflow_call]
|
|
|
|
jobs:
|
|
mirror:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: yesolutions/mirror-action@master
|
|
with:
|
|
REMOTE: "https://codeberg.org/${{ github.repository }}.git"
|
|
GIT_USERNAME: CPlusPatch
|
|
GIT_PASSWORD: ${{ secrets.CODEBERG_TOKEN }}
|