diff options
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/release_beta_to_dev.yaml | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/.github/workflows/release_beta_to_dev.yaml b/.github/workflows/release_beta_to_dev.yaml index 185bf964c..c7fa57b22 100644 --- a/.github/workflows/release_beta_to_dev.yaml +++ b/.github/workflows/release_beta_to_dev.yaml @@ -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/[email protected] + 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 |