Skip to content

Commit

Permalink
[SW-201504] Adding Test Trigger (#533)
Browse files Browse the repository at this point in the history
  • Loading branch information
RonBenMosheHabana authored Nov 21, 2024
1 parent f481707 commit 425d0be
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/trigger_jenkins.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Trigger Jenkins Tests
on:
pull_request_target:
types: [opened, reopened, edited]

permissions:
pull-requests: write
jobs:
TriggerJenkinsTests:
runs-on: ubuntu-latest
steps:
- name: Trigger Jenkins Tests
run: |

Check failure on line 13 in .github/workflows/trigger_jenkins.yml

View workflow job for this annotation

GitHub Actions / actionlint

shellcheck reported issue in this script: SC1101:error:1:49: Delete trailing spaces after \ to break line (or use quotes for literal space)
curl -XPOST -H "Content-Type: application/json" \
${{ secrets.WEBHOOK_URL }} \
-d "${{ toJson(github.event.payload) }}"

0 comments on commit 425d0be

Please sign in to comment.