Skip to content

feat: update url

feat: update url #16

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: |
# cat $GITHUB_EVENT_PATH
#
# 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"}'
- name: Set Check Status to Pending
uses: actions/github-script@v6
with:
script: |
github.checks.create({
owner: context.repo.owner,
repo: context.repo.repo,
name: 'DevHub healthcheck',
head_sha: context.sha,
status: 'in_progress',
started_at: new Date().toISOString(),
conclusion: 'neutral',
completed_at: new Date().toISOString(),
output: {
title: 'Setting Check Status to Pending',
summary: 'Your summary here'
}
})
# - name: Set Workflow Status
# run: echo "##[set-output name=status]pending"
# run: echo "status=pending" >> $GITHUB_OUTPUT
# 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 }}