ci: Add GitHub action to trigger Gitlab CI pipeline #3
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
on: | ||
pull_request: | ||
jobs: | ||
waiting: | ||
runs-on: self-hosted | ||
steps: | ||
- name: waiting | ||
run: echo "Waiting for pre-commit steps to finish first" | ||
mirror_repo: | ||
environment: GITLAB | ||
needs: pre-commit | ||
Check failure on line 11 in .github/workflows/trigger_ci.yml GitHub Actions / .github/workflows/trigger_ci.ymlInvalid workflow file
|
||
runs-on: self-hosted | ||
steps: | ||
- name: step1 | ||
run: | | ||
#!/bin/bash | ||
curl --request POST --header "PRIVATE-TOKEN:${{ secrets.TOKEN }}" "${{ secrets.MIRROR_URL }}" |