Skip to content

Commit

Permalink
Fixing gitspiegel trigger workflow (#541)
Browse files Browse the repository at this point in the history
  • Loading branch information
mutantcornholio authored Nov 13, 2023
1 parent fb12c07 commit c781ce0
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/gitspiegel-trigger.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: gitspiegel sync

# This workflow doesn't do anything, it's only use is to trigger "workflow_run"
# webhook, that'll be consumed by gitspiegel
# This way, gitspiegel won't do mirroring, unless this workflow runs,
# and running the workflow is protected by GitHub

on:
pull_request:
types:
Expand All @@ -13,8 +18,5 @@ jobs:
sync:
runs-on: ubuntu-latest
steps:
- name: Trigger sync via API
run: |
curl --fail-with-body -XPOST "https://gitspiegel.parity-prod.parity.io/api/v1/mirror/${{ github.repository }}/pull/${{ github.event.number }}" \
-H "Content-Type: application/json" \
-H "x-auth: ${{ secrets.GITSPIEGEL_TOKEN }}"
- name: Do nothing
run: echo "let's go"

0 comments on commit c781ce0

Please sign in to comment.