-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
243502b
commit 135bb7e
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Update PR from Issue Modification | ||
|
||
on: | ||
issues: | ||
types: | ||
- edited | ||
|
||
jobs: | ||
convert-issue-to-pr: | ||
runs-on: ubuntu-latest | ||
env: | ||
BACKEND_URL: https://fp-core-prod.dp04sa0tdc6pk.us-east-1.cs.amazonlightsail.com | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Convert Issue To PR | ||
run: | | ||
REPO_NAME=$(echo ${{ github.repository }} | cut -d'/' -f2) | ||
echo "Updating PR from Issue: ${{ github.event.issue.number }} in $REPO_NAME" | ||
curl --header "Content-Type: application/json" \ | ||
--request POST \ | ||
--data '{"issue_number": "'${{ github.event.issue.number }}'", "repo": "'$REPO_NAME'", "owner": "'${{ github.repository_owner }}'"}' \ | ||
"${BACKEND_URL}/application/update-from-issue" |