Merge pull request #141 from AppsFlyerSDK/dev/DELIVERY-63802/ci-modif… #71
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release plugin to QA | ||
on: | ||
push: | ||
branches: | ||
- releases/[0-9]+.x.x/[0-9]+.[0-9]+.x/[0-9]+.[0-9]+.[0-9]+-rc[0-9]+ | ||
jobs: | ||
Check-If-ReleaseNotes-Pushed: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
answer: ${{ steps.filter.outputs.releasenotesfile }} | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: dorny/paths-filter@v2 | ||
id: filter | ||
with: | ||
filters: | | ||
releasenotesfile: | ||
- 'releasenotes.**' | ||
Run-Unit-Tests: | ||
needs: Check-If-ReleaseNotes-Pushed | ||
if: needs.Check-If-ReleaseNotes-Pushed.outputs.answer == 'false' | ||
uses: ./.github/workflows/unit-tests-workflow.yml | ||
Prepere-To-QA-&-Release: | ||
Check failure on line 28 in .github/workflows/release-QA-workflow.yml GitHub Actions / Release plugin to QAInvalid workflow file
|
||
needs: [Check-If-ReleaseNotes-Pushed] | ||
if: needs.Check-If-ReleaseNotes-Pushed.outputs.answer == 'false' | ||
uses: ./.github/workflows/prepare-for-QA-&-release.yml | ||