feature(attachments): add bulk deleting attachments using the row selector in table with mock api TASK-1516 TASK-1710 #451
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: CI of a PR | |
on: pull_request | |
jobs: | |
changes: | |
runs-on: ubuntu-22.04 | |
permissions: { pull-requests: read } | |
steps: | |
- uses: actions/checkout@v4 | |
- id: filter | |
uses: dorny/paths-filter@v3 | |
name: Detect changed files | |
with: { filters: .github/filters.yml } | |
outputs: | |
darker: ${{ steps.filter.outputs.darker }} | |
pytest: ${{ steps.filter.outputs.pytest }} | |
npm-test: ${{ steps.filter.outputs.npm-test }} | |
darker: | |
needs: changes | |
uses: ./.github/workflows/darker.yml | |
if: needs.changes.outputs.darker == 'true' | |
pytest: | |
needs: changes | |
uses: ./.github/workflows/pytest.yml | |
if: needs.changes.outputs.pytest == 'true' | |
npm-test: | |
needs: changes | |
uses: ./.github/workflows/npm-test.yml | |
if: needs.changes.outputs.npm-test == 'true' |