Merge pull request #225 from terrestris/update-keycloak #8
This file contains hidden or 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 pipeline | |
| on: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| trigger-gitlab-pipeline: | |
| name: Trigger GitLab pipeline | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Trigger GitLab pipeline 🚀 | |
| run: | | |
| curl \ | |
| -X POST \ | |
| --silent \ | |
| --output /dev/null \ | |
| --show-error \ | |
| --fail \ | |
| -F token=${{ secrets.GITLAB_TRIGGER_TOKEN }} \ | |
| -F ref=${{ secrets.GITLAB_PROJECT_REF }} \ | |
| https://${{ secrets.GITLAB_URL }}/api/v4/projects/${{ secrets.GITLAB_PROJECT_ID }}/trigger/pipeline |