Skip to content

Fix Crash Issue when Seeing User's Videos in UserDetailsView #6

Fix Crash Issue when Seeing User's Videos in UserDetailsView

Fix Crash Issue when Seeing User's Videos in UserDetailsView #6

name: Status Check Runner
on:
issue_comment:
types:
- created
jobs:
checkif:
runs-on: ubuntu-latest
name: Check Comment Content
outputs:
shouldc: ${{ steps.checkc.outputs.shouldc }}
steps:
- name: Check
id: checkc
run: |
if [[ "${{ github.event.comment.body }}" != *"!Run check"* ]]; then
echo "The comment content does not contain the specified text. Cancelling workflow."
echo "::set-output name=shouldc::false"
else
echo "The comment content contains the specified text. Continuing with further actions."
echo "::set-output name=shouldc::true"
fi
call-check-workflow:
name: Run
needs: checkif
if: ${{ needs.checkif.outputs.shouldc == 'true' }}
uses: Darock-Studio/Darock-Bili/.github/workflows/status-check.yml@main

Check failure on line 29 in .github/workflows/statuscheck-runner.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/statuscheck-runner.yml

Invalid workflow file

error parsing called workflow ".github/workflows/statuscheck-runner.yml" -> "Darock-Studio/Darock-Bili/.github/workflows/status-check.yml@main" (source branch with sha:a552948dccb843ce6ee29b23eaea143889e43d3e) : workflow is not reusable as it is missing a `on.workflow_call` trigger
with:
psha: ${{ github.event.comment.pull_request.head.sha }}