Skip to content

Commit

Permalink
Merge pull request #19 from Marichandran/Marichandran-patch-15
Browse files Browse the repository at this point in the history
Update blank.yml
  • Loading branch information
Marichandran authored Nov 29, 2022
2 parents ba44537 + 81b1abd commit e217515
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,18 @@ jobs:
run:
echo "The PR_EVENT is ${{ env.PR.EVENT }}"
echo "The PR_URL is ${{ env.PR_URL }}"
echo "The TOKEN is ${{ PR_LABEL }}"
echo "The TOKEN is ${{ env.PR_LABEL }}"

- name: Trigger Jenkins Build with PR Information
run: |-
curl --location --request POST ${{ JENKINS_URL }}${{ BUILDTOKEN }} \
curl --location --request POST ${{ env.JENKINS_URL }}${{ BUILDTOKEN }} \
--header 'Content-Type: application/json' \
--data-raw '{
"action": ${{ PR_EVENT }} ,
"action": ${{ env.PR_EVENT }} ,
"pull_request": {
"html_url": ${{ PR_URL }}
"html_url": ${{ env.PR_URL }}
},
"label": {
"name": ${{ PR_LABEL }}
"name": ${{ env.PR_LABEL }}
}
}'

0 comments on commit e217515

Please sign in to comment.