Skip to content

combine steps

combine steps #24

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: Checkout Repository
uses: actions/checkout@v2
- name: Create Check
run: |
npm i @octokit/rest
node .github/scripts/create-check.js
node .github/scripts/trigger-workflow.js
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PERSONAL_ACCESS_TOKEN: ${{ secrets.DEV_HUB_PERSONAL_ACCESS_TOKEN }}
DEV_HUB_BRANCH: ${{ github.ref_name }}
DEV_HUB_REPO: ${{ github.repository }}
DEV_HUB_SHA: ${{ github.sha }}
# - 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 }}
# DEV_HUB_SHA: ${{ github.sha }}
# Create check run
# - name: Create Check
# uses: octokit/[email protected]
# with:
# route: POST /repos/:owner/:repo/check-runs
# owner: ${{ github.repository_owner }}
# repo: ${{ github.repository }}
# name: 'YourCheckName'
# head_sha: ${{ github.sha }}
# status: 'in_progress'
# started_at: ${{ github.event.head_commit.timestamp }}
# output: |
# {
# "title": "Your Check Title",
# "summary": "Your Check Summary"
# }
# token: ${{ secrets.GITHUB_TOKEN }}
# - 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 }}