You've already forked testing-go-code-with-postgres
mirror of
https://github.com/xorcare/testing-go-code-with-postgres.git
synced 2025-06-30 23:23:40 +02:00
Added an example .gitlab-ci.yml, to make a sample more informative. Also added mirroring to gitlab to simplify repository development and gitlab ci validation.
26 lines
803 B
YAML
26 lines
803 B
YAML
name: GitLab
|
|
|
|
on: [ push ]
|
|
|
|
jobs:
|
|
mirror:
|
|
name: Mirroring to GitLab
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Mirror repository to Gitlab
|
|
run: |
|
|
set -e -x
|
|
git remote add gitlab "${{ vars.GITLAB_REPO }}"
|
|
git config --global url."https://${{ vars.GITLAB_USERNAME }}:${{ secrets.GITLAB_PUSH_TOKEN }}@gitlab.com".insteadOf https://gitlab.com
|
|
git push --force gitlab "$GITHUB_REF_NAME"
|
|
- name: Run GitLab CI
|
|
run: >
|
|
curl -i --fail
|
|
--request POST
|
|
--form token=${{ secrets.GITLAB_CI_TOKEN }}
|
|
--form ref="${{ github.ref_name }}"
|
|
https://gitlab.com/api/v4/projects/${{ vars.GITLAB_PROJECT_ID }}/trigger/pipeline
|