2023-09-28 15:57:00 -07:00
|
|
|
name: Job messages
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_call:
|
|
|
|
inputs:
|
|
|
|
branch:
|
|
|
|
required: false
|
|
|
|
type: string
|
|
|
|
commit:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
preview_url:
|
|
|
|
required: false
|
|
|
|
type: string
|
|
|
|
build_workflow_run_id:
|
|
|
|
required: false
|
|
|
|
type: number
|
|
|
|
commenting_workflow_run_id:
|
|
|
|
required: true
|
|
|
|
type: string
|
|
|
|
in_progress:
|
|
|
|
required: true
|
|
|
|
type: boolean
|
|
|
|
outputs:
|
|
|
|
msg:
|
|
|
|
description: The composed message
|
|
|
|
value: ${{ jobs.msg.outputs.msg }}
|
|
|
|
marker:
|
|
|
|
description: Hidden marker to detect PR comments composed by the bot
|
|
|
|
value: "CFPages-deployment"
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
msg:
|
|
|
|
name: Deployment status
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
msg: ${{ env.msg }}
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Compose message
|
|
|
|
if: ${{ always() }}
|
|
|
|
id: compose
|
|
|
|
env:
|
|
|
|
COMMIT: ${{ inputs.commit }}
|
2023-10-09 07:17:54 -07:00
|
|
|
PREVIEW_URL: ${{ inputs.preview_url != '' && (inputs.branch != 'master' && inputs.preview_url || format('https://jellyfin-web.pages.dev ({0})', inputs.preview_url)) || 'Not available' }}
|
2023-09-28 15:57:00 -07:00
|
|
|
DEPLOY_STATUS: ${{ inputs.in_progress && '🔄 Deploying...' || (inputs.preview_url != '' && '✅ Deployed!' || '❌ Failure. Check workflow logs for details') }}
|
|
|
|
DEPLOYMENT_TYPE: ${{ inputs.branch != 'master' && '🔀 Preview' || '⚙️ Production' }}
|
|
|
|
BUILD_WORKFLOW_RUN: ${{ !inputs.in_progress && format('**[View build logs](https://github.com/{0}/actions/runs/{1})**', 'jellyfin/jellyfin-web', inputs.build_workflow_run_id) || '' }}
|
|
|
|
COMMENTING_WORKFLOW_RUN: ${{ format('**[View bot logs](https://github.com/{0}/actions/runs/{1})**', 'jellyfin/jellyfin-web', inputs.commenting_workflow_run_id) }}
|
|
|
|
# EOF is needed for multiline environment variables in a GitHub Actions context
|
|
|
|
run: |
|
|
|
|
echo "## Cloudflare Pages deployment" > $GITHUB_STEP_SUMMARY
|
|
|
|
echo "" >> $GITHUB_STEP_SUMMARY
|
|
|
|
echo "| **Latest commit** | <code>${COMMIT::7}</code> |" >> $GITHUB_STEP_SUMMARY
|
|
|
|
echo "|------------------------- |:----------------------------: |" >> $GITHUB_STEP_SUMMARY
|
|
|
|
echo "| **Status** | $DEPLOY_STATUS |" >> $GITHUB_STEP_SUMMARY
|
|
|
|
echo "| **Preview URL** | $PREVIEW_URL |" >> $GITHUB_STEP_SUMMARY
|
|
|
|
echo "| **Type** | $DEPLOYMENT_TYPE |" >> $GITHUB_STEP_SUMMARY
|
|
|
|
echo "" >> $GITHUB_STEP_SUMMARY
|
|
|
|
echo "$BUILD_WORKFLOW_RUN" >> $GITHUB_STEP_SUMMARY
|
|
|
|
echo "$COMMENTING_WORKFLOW_RUN" >> $GITHUB_STEP_SUMMARY
|
|
|
|
COMPOSED_MSG=$(cat $GITHUB_STEP_SUMMARY)
|
|
|
|
echo "msg<<EOF" >> $GITHUB_ENV
|
|
|
|
echo "$COMPOSED_MSG" >> $GITHUB_ENV
|
|
|
|
echo "EOF" >> $GITHUB_ENV
|