Skip to content

ci: use commit type when we have changes in actions directory #168

ci: use commit type when we have changes in actions directory

ci: use commit type when we have changes in actions directory #168

Workflow file for this run

name: ⚙️ CI
on:
pull_request:
push:
branches:
- main
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
with:
persist-credentials: false
- uses: taiga-family/ci/actions/setup/variables@main
- uses: taiga-family/ci/actions/setup/node@main
- run: |
if [[ "${{ env.SUPPORT_AUTO_PUSH }}" == "true" ]]; then
npm run prettier -- --write
else
npm run prettier -- --check
fi
- uses: ./actions/auto/push
with:
token: ${{ secrets.TAIGA_FAMILY_BOT_PAT }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true