修复:建议主键命名为"PK_表名“,当未为主键命名的时候,规则不触发 #81
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: contains(github.event.pull_request.labels.*.name, 'need_cherry_pick') | |
runs-on: ubuntu-latest | |
name: Cherry pick into main | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Create PR to main | |
uses: carloscastrojumo/[email protected] | |
with: | |
branch: ${{ github.repository == 'actiontech/sqle-ee' && 'main-ee' || 'main' }} | |
labels: | | |
cherry-pick | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |