Skip to content

Commit

Permalink
Spur GitHub Actions integration
Browse files Browse the repository at this point in the history
  • Loading branch information
N2D4 committed Jul 27, 2024
1 parent 0aa5b11 commit 9a85caa
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/spur-trigger.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Trigger Spur Webhook on Push 🔔

on:
push

jobs:
trigger_webhook:
runs-on: ubuntu-latest

steps:
- name: 📡 Curl Request to Trigger TestSuites on Spur
run: |
curl -X POST \
-H "Content-Type: application/json" \
-H "SPUR_GITHUB_KEY: ${{ secrets.SPUR_GITHUB_KEY }}" \
-H "sha: ${{ github.sha }}" \
-H "repo: ${{ github.repository }}" \
"https://spurserverstaging.azurewebsites.net/api/integrations/github/webhook"

0 comments on commit 9a85caa

Please sign in to comment.