restore: correct new collation when "--check-requirements=false" (#49579) #14322
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/header@v0.4.0 | |
with: | |
log: info | |
token: ${{ secrets.GITHUB_TOKEN }} | |
config: .github/licenserc.yml |