Trigger GitLab Deploy Pipeline #53
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: Trigger GitLab Deploy Pipeline | |
on: | |
workflow_dispatch: | |
workflow_run: | |
workflows: ["Check codebase"] | |
branches: | |
- develop | |
- master | |
- 'refs/tags/[0-9]+.[0-9]+.[0-9]+*' | |
types: | |
- completed | |
jobs: | |
trigger-gitlab: | |
name: Trigger GitLab CI | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'workflow_dispatch' || (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') }} | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Sync HEAD with GitLab | |
uses: saderi/push-to-gitlab@v1 | |
with: | |
gitlab_repository: 'gitlab.com/kiltprotocol/kilt-node' | |
gitlab_token: ${{ secrets.KILTBOT_PUSH_ACCESS_TOKEN }} | |
- name: Trigger GitLab CI | |
run: | | |
curl -X POST \ | |
-F token=${{ secrets.GITLAB_TRIGGER_TOKEN }} \ | |
-F ref=${{ github.ref_name }} \ | |
https://gitlab.com/api/v4/projects/${{ vars.GITLAB_PROJECT_ID }}/trigger/pipeline |