table: fix the issue that the default value for BIT
column is wrong (#57303)
#15230
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
name: misc | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- "master" | |
- "main" | |
- "release-**" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
jobs: | |
check: | |
permissions: | |
contents: read # to fetch code (actions/checkout) | |
pull-requests: write # to comment on pull-requests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Check File Permission | |
run: make check-file-perm | |
- name: Check License Header | |
uses: apache/skywalking-eyes/[email protected] | |
with: | |
log: info | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config: .github/licenserc.yml |