Skip to content
Snippets Groups Projects
Commit 8adde843 authored by Martin Pugh's avatar Martin Pugh Committed by GitHub
Browse files

[CI] Remove redundant trigger-review-pipeline job (#13547)

This job is now redundant since pipelines are run for each commit, so it can be safely removed. Cheers
parent 9b996439
Branches
No related merge requests found
name: Trigger pipeline for review
on:
pull_request:
types: [ready_for_review]
jobs:
trigger:
runs-on: ubuntu-latest
steps:
- name: Trigger pipeline
run: |
curl -X POST \
-F token="$TOKEN" \
-F ref="$REF" \
https://gitlab.parity.io/api/v4/projects/145/trigger/pipeline
env:
REF: ${{ github.event.number }}
TOKEN: ${{ secrets.GITLAB_TRIGGER_TOKEN }}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment