chore(deps): update taiga-ui dev infra to v0.193.0 #659
Workflow file for this run
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: 🤖 Auto approve validation | |
on: pull_request | |
env: | |
PR_JOBS_NAME: '[ "Build app", "Firebase", "Run tests", "Lint result" ]' | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.matrix.outputs.value }} | |
steps: | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- id: matrix | |
if: env.IS_TAIGA_FAMILY_BOT_PR_AUTHOR == 'true' | |
run: echo "value=$PR_JOBS_NAME" >> $GITHUB_OUTPUT | |
wait: | |
needs: [setup] | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
matrix: | |
value: ${{ fromJSON(needs.setup.outputs.matrix) }} | |
steps: | |
- uses: taiga-family/ci/actions/run/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
job: ${{ matrix.value }} | |
approve: | |
needs: [wait] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/setup/[email protected] | |
- uses: taiga-family/ci/actions/auto/approve/[email protected] | |
with: | |
token1: ${{ secrets.GITHUB_TOKEN }} | |
token2: ${{ secrets.TAIGA_FAMILY_APPROVE_BOT_PAT }} | |
- uses: taiga-family/ci/actions/run/[email protected] | |
if: env.IS_RELEASE_BRANCH == 'false' | |
with: | |
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }} | |
concurrency: | |
group: auto-approve-${{ github.head_ref }} | |
cancel-in-progress: true |