Skip to content

Commit

Permalink
Add workflow to enable repository mirroring
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroetb committed Mar 19, 2024
1 parent 60f7478 commit 5cab4dd
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/gitlab-mirror.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Mirror and run GitLab CI

on: [push]

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Mirror + trigger CI
uses: SvanBoxel/gitlab-mirror-and-ci-action@master
with:
args: "https://gitlab.com/pedroetb-projects/tts-api"
env:
FOLLOW_TAGS: "true"
FORCE_PUSH: "false"
GITLAB_HOSTNAME: "gitlab.com"
GITLAB_USERNAME: "pedroetb"
GITLAB_PASSWORD: ${{ secrets.GITLAB_PASSWORD }}
GITLAB_PROJECT_ID: "16939539"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 5cab4dd

Please sign in to comment.