Main changes for kube/cluster-init.sh for multi-node cluster handling #742
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
# Copyright (c) 2024, Zededa, Inc. | |
# SPDX-License-Identifier: Apache-2.0 | |
--- | |
name: Check SPDX License Headers | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
branches: | |
- "master" | |
- "[0-9]+.[0-9]+" | |
- "[0-9]+.[0-9]+-stable" | |
paths-ignore: | |
- '**/*.md' | |
jobs: | |
spdx-check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.base_ref }} | |
fetch-depth: 0 | |
- name: Fetch the PR's head ref | |
run: | | |
git fetch origin ${{ github.event.pull_request.head.sha }}:${{ github.event.pull_request.head.ref }} | |
git checkout ${{ github.event.pull_request.head.ref }} | |
- name: Run SPDX check | |
run: | | |
./tools/spdx-check.sh ${{ github.event.pull_request.base.sha }} |