Skip to content

chore(deps): update dependency stylelint-prettier to v5 - autoclosed #1404

chore(deps): update dependency stylelint-prettier to v5 - autoclosed

chore(deps): update dependency stylelint-prettier to v5 - autoclosed #1404

Workflow file for this run

name: 'The Pipeline'
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ci-${{ github.ref }}-1
cancel-in-progress: true
jobs:
extract-branch:
name: 'Fetch branch'
runs-on: ubuntu-latest
outputs:
current_branch: ${{ steps.get-branch.outputs.current_branch }}
steps:
- name: Extract branch name πŸ•Š
id: get-branch
run: echo "current_branch=${GITHUB_REF##*/}" >> $GITHUB_OUTPUT
ci:
name: 'CI'
needs:
- extract-branch
uses: ./.github/workflows/ci.yml
builder:
name: 'Builder'
needs:
- extract-branch
- ci
if: ${{ github.event_name == 'push' }}
uses: ./.github/workflows/builder.yml
with:
branch: ${{ needs.extract-branch.outputs.current_branch }}