no log: Use LASER-Yi/workflow-status to check CI status

pull/1448/head^2
LASER-Yi 3 years ago
parent 5a7981e557
commit 058ae489f0

@ -17,14 +17,6 @@ jobs:
echo This action can only be run on development branch, not ${{ github.ref }}
exit 1
# TODO: Replace me
- name: Validate CI
uses: xembly/validate-workflow-status@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
workflow: CI
branch: development
- name: Checkout
uses: actions/checkout@v2
with:
@ -59,7 +51,17 @@ jobs:
run: npm run build
working-directory: ${{ env.UI_DIRECTORY }}
- name: Validate CI
id: check-ci
uses: LASER-Yi/workflow-status@v0.0.2
with:
token: ${{ secrets.GITHUB_TOKEN }}
workflow: ci.yml
event: push
branch: development
- name: Create Release (Conditional)
if: ${{ steps.check-ci.outputs.conclusion == 'success' }}
run: |
revision_count=$(git rev-list --invert-grep --regexp-ignore-case --extended-regexp --grep="^(Release|no log:).*" $(git describe --tags --abbrev=0)..HEAD --count)
if [[ $revision_count != 0 ]]; then

Loading…
Cancel
Save