feat: added method to download rows as csv #7489
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: Check PR Name | |
on: | |
pull_request: | |
types: ['opened', 'edited', 'reopened', 'synchronize'] | |
jobs: | |
pr-lint: | |
name: Check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: seferov/pr-lint-action@master | |
with: | |
title-regex: '^(?:(?:\[WIP\] ?)?(?:build|ci|chore|docs|task|feat|fix|perf|refactor|revert|style|test)\:(?:\ +?#\d+?\ +?)?.*)|(?:\[Snyk\].*)' | |
title-regex-flags: 'g' # optional | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
auto-close-message: 'Closing this pull request since the title does not match %pattern% pattern. Please fix the title and re-open the pull request.' |