Skip to content

chore: Update benchmarks #24

chore: Update benchmarks

chore: Update benchmarks #24

Workflow file for this run

# SPDX-FileCopyrightText: 2024 Shun Sakai
#
# SPDX-License-Identifier: Apache-2.0 OR MIT
name: Mirror to mirror repositories
on:
push:
branches:
- "develop"
- "master"
workflow_dispatch:
jobs:
gitlab:
name: Mirror to GitLab
if: github.actor == 'sorairolake' && github.repository_owner == 'sorairolake'
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Mirror to GitLab
uses: yesolutions/[email protected]
with:
REMOTE: "https://gitlab.com/sorairolake/nt-time.git"
GIT_USERNAME: ${{ github.actor }}
GIT_PASSWORD: ${{ secrets.GITLAB_TOKEN }}
PUSH_ALL_REFS: "false"
codeberg:
name: Mirror to Codeberg
if: github.actor == 'sorairolake' && github.repository_owner == 'sorairolake'
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Mirror to Codeberg
uses: yesolutions/[email protected]
with:
REMOTE: "https://codeberg.org/sorairolake/nt-time.git"
GIT_USERNAME: ${{ github.actor }}
GIT_PASSWORD: ${{ secrets.CODEBERG_TOKEN }}
PUSH_ALL_REFS: "false"