Skip to content

feat: update url

feat: update url #10

name: Healthcheck
on: push
jobs:
trigger-healthckeck:
runs-on: ubuntu-latest
steps:
# - uses: ouzi-dev/commit-status-updater@v2
# with:
# status: "pending"
- name: Set Status to Pending
run: |
PR_URL=$(curl -s "https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.number }}" -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" | jq -r .url)
SHA=$(jq -r .pull_request.head.sha "$GITHUB_EVENT_PATH")
curl -X POST \
-H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
-H "Accept: application/vnd.github.v3+json" \
"$PR_URL/statuses/$SHA" \
-d '{"state": "pending", "description": "Workflow is in progress", "context": "ci/pending-status"}'
# uses: shopware/developer-portal/.github/workflows/self-trigger.yml@DX-healthcheck
# with:
# branch: ${{ github.ref_name }}
# repository: ${{ github.repository }}
# secrets:
# access_token: ${{ secrets.DEVELOPER_PORTAL_WORKFLOW_TOKEN }}
# trigger-healthcheck:
# runs-on: ubuntu-latest
# steps:
# - name: Set default status to "pending"
# run: echo "::set-output name=status::pending"
#
# - name: Trigger DevHub healthcheck
# uses: octokit/[email protected]
# with:
# route: POST /repos/shopware/developer-portal/actions/workflows/external-healthcheck.yml@DX-healthcheck/dispatches
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# DEV_HUB_BRANCH: ${{ github.ref_name }}
# DEV_HUB_REPO: ${{ github.repository }}