修复:应避免在 WHERE 条件中使用函数或其他运算符,使用不作用在列上的函数,会触发该规则 #72
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
on: | |
pull_request: | |
branches: | |
- release* | |
types: ["closed"] | |
jobs: | |
cherry_pick_release_2_main: | |
if: github.event.pull_request.merged == true && github.repository == 'actiontech/sqle' | |
runs-on: ubuntu-latest | |
name: Cherry pick into main | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Cherry pick into main | |
uses: Nathanmalnoury/gh-backport-action@master | |
with: | |
pr_branch: 'main' | |
github_token: ${{ secrets.GITHUB_TOKEN }} |