Skip to content

feat(devbox): add devbox pod gpu matcher #11347

feat(devbox): add devbox pod gpu matcher

feat(devbox): add devbox pod gpu matcher #11347

Workflow file for this run

name: Check-License
on:
workflow_dispatch:
push:
branches: ["main"]
paths-ignore:
- "docs/**"
- "**/*.md"
- "**/*.yaml"
- "CHANGELOG/**"
pull_request:
branches: ["*"]
paths-ignore:
- "docs/**"
- "**/*.md"
- "**/*.yaml"
- "CHANGELOG/**"
# Avoid using ${{ github.workflow }} - when called via workflow_call, it inherits the caller's name causing conflicts
concurrency:
group: check-license-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
# Common versions
GO_VERSION: "1.25"
PROJECT_PATH: "./lifecycle"
jobs:
check-license:
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Check License
env:
PROJECT_PATH: ${{ env.PROJECT_PATH }}
run: cd "${PROJECT_PATH}" && make verify-license