Remove obsolete workflow transferring source across forks (#326)

This commit is contained in:
Jerin Philip 2022-02-02 12:36:30 +00:00 committed by GitHub
parent 95de806d1d
commit 19ae519c63
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,27 +0,0 @@
name: Push browsermt/main branch to mozilla/bergamot-translator
on:
schedule:
# Run every hour
- cron: "0 * * * *"
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Mirror a branch from a remote repo into this one
env:
source_repository: 'browsermt/bergamot-translator'
this_repository: 'mozilla/bergamot-translator'
branch: 'main'
steps:
- uses: actions/checkout@v2
- name: Mirror a branch from a remote repo into this one
if: ${{ github.repository == env.this_repository }}
run: |
git clone -b ${{ env.branch }} https://github.com/${{ env.source_repository }}.git source
cd source
git remote add mirror https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/${{ env.this_repository }}.git
git push mirror ${{ env.branch }}