Update tools.en.md #4313
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🪞 Push to Mirrors | |
on: [ push, delete, create ] | |
# Ensures that only one mirror task will run at a time. | |
concurrency: | |
group: git-mirror | |
jobs: | |
gitlab: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Mirror to GitLab | |
uses: wearerequired/git-mirror-action@v1 | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.ACTIONS_SSH_KEY }} | |
with: | |
source-repo: "[email protected]:privacyguides/privacyguides.org.git" | |
destination-repo: "[email protected]:privacyguides/privacyguides.org.git" | |
codeberg: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Mirror to Codeberg | |
uses: wearerequired/git-mirror-action@v1 | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.ACTIONS_SSH_KEY }} | |
with: | |
source-repo: "[email protected]:privacyguides/privacyguides.org.git" | |
destination-repo: "[email protected]:privacyguides/privacyguides.org.git" | |
sourcehut: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Mirror to SourceHut | |
uses: wearerequired/git-mirror-action@v1 | |
env: | |
SSH_PRIVATE_KEY: ${{ secrets.ACTIONS_SSH_KEY }} | |
with: | |
source-repo: "[email protected]:privacyguides/privacyguides.org.git" | |
destination-repo: "[email protected]:~jonaharagon/privacyguides.org" |