step1: copy runtime config to devbox crd, add runtime id. (#5326) #7357
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-License | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "main" ] | |
paths-ignore: | |
- "docs/**" | |
- "**/*.md" | |
- "**/*.yaml" | |
- "CONTRIBUTORS" | |
- "CHANGELOG/**" | |
pull_request: | |
branches: [ "*" ] | |
paths-ignore: | |
- "docs/**" | |
- "**/*.md" | |
- "**/*.yaml" | |
- "CONTRIBUTORS" | |
- "CHANGELOG/**" | |
env: | |
# Common versions | |
GO_VERSION: "1.20" | |
jobs: | |
check-license: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Check License | |
run: make verify-license |