mirror of
https://github.com/morpheus65535/bazarr
synced 2024-12-23 08:13:14 +00:00
no log: Use LASER-Yi/workflow-status to check CI status
This commit is contained in:
parent
5a7981e557
commit
058ae489f0
1 changed files with 10 additions and 8 deletions
18
.github/workflows/release_beta_to_dev.yaml
vendored
18
.github/workflows/release_beta_to_dev.yaml
vendored
|
@ -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…
Reference in a new issue