diff --git a/.github/workflows/create_pylon_issue.yml b/.github/workflows/create_pylon_issue.yml deleted file mode 100644 index a43dafd7d..000000000 --- a/.github/workflows/create_pylon_issue.yml +++ /dev/null @@ -1,72 +0,0 @@ -name: Create Pylon Issue - -on: - issues: - types: [opened] - pull_request_target: - types: [opened] - -jobs: - create_pylon_issue: - runs-on: ubuntu-latest - steps: - - name: Install jq - run: sudo apt-get install -y jq - - - name: Create Pylon Issue for GitHub Issue - if: github.event_name == 'issues' - run: | - response=$(curl --request POST \ - --url https://api.usepylon.com/issues \ - --header 'Authorization: ${{ secrets.PYLON_API_KEY }}' \ - --header 'Content-Type: application/json' \ - --data '{ - "account_id": "${{ secrets.PYLON_ACCOUNT_ID }}", - "requester_id": "${{ secrets.PYLON_REQUESTER_ID }}", - "priority": "medium", - "title": "${{ github.event.issue.title }}", - "body_html": "GitHub Issue Details

GitHub Issue Details

Repository: ${{ github.repository }}

Type: Github Issue

URL: ${{ github.event.issue.html_url }}

" - }') - ticket_id=$(echo $response | jq -r '.data.id') - echo "ticket_id=$ticket_id" >> $GITHUB_ENV - - - name: Add Pylon ticket ID to issue body - if: success() - run: | - issue_body=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ - "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}" | jq -r '.body') - new_body="$issue_body" - json_body=$(jq -R -s --arg body "$new_body" '{"body": $body}' <<< "$new_body") - curl -X PATCH -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ - -H "Content-Type: application/json" \ - -d "$json_body" \ - "https://api.github.com/repos/${{ github.repository }}/issues/${{ github.event.issue.number }}" - - - name: Create Pylon Issue for Pull Request - if: contains(github.event_name, 'pull_request') - run: | - response=$(curl --request POST \ - --url https://api.usepylon.com/issues \ - --header 'Authorization: ${{ secrets.PYLON_API_KEY }}' \ - --header 'Content-Type: application/json' \ - --data '{ - "account_id": "${{ secrets.PYLON_ACCOUNT_ID }}", - "requester_id": "${{ secrets.PYLON_REQUESTER_ID }}", - "priority": "high", - "title": "${{ github.event.pull_request.title }}", - "body_html": "GitHub Pull Request Details

GitHub Pull Request Details

Repository: ${{ github.repository }}

Type: Pull Request

URL: ${{ github.event.pull_request.html_url }}

" - }') - ticket_id=$(echo $response | jq -r '.data.id') - echo "ticket_id=$ticket_id" >> $GITHUB_ENV - - - name: Add Pylon ticket ID to PR body - if: success() - run: | - pr_body=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ - "https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}" | jq -r '.body') - new_body="$pr_body" - json_body=$(jq -R -s --arg body "$new_body" '{"body": $body}' <<< "$new_body") - curl -X PATCH -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ - -H "Content-Type: application/json" \ - -d "$json_body" \ - "https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}"