-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'lf-edge:master' into master
- Loading branch information
Showing
617 changed files
with
78,938 additions
and
16,729 deletions.
There are no files selected for viewing
Validating CODEOWNERS rules …
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Copyright (c) 2024, Zededa, Inc. | ||
# SPDX-License-Identifier: Apache-2.0 | ||
--- | ||
name: Lint Commit Messages | ||
|
||
on: # yamllint disable-line rule:truthy | ||
push: | ||
branches: | ||
- "master" | ||
- "[0-9]+.[0-9]+" | ||
- "[0-9]+.[0-9]+-stable" | ||
pull_request: | ||
branches: | ||
- "master" | ||
- "[0-9]+.[0-9]+" | ||
- "[0-9]+.[0-9]+-stable" | ||
|
||
jobs: | ||
commitlint: | ||
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: Create virtual environment | ||
run: | | ||
cd tools/check-commit-messages | ||
python3 -m venv .venv | ||
source .venv/bin/activate | ||
pip install -r requirements.txt | ||
- name: Lint commit messages | ||
run: | | ||
cd tools/check-commit-messages | ||
source .venv/bin/activate | ||
python check_commit_messages.py ${{ github.event.pull_request.base.sha }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,26 +60,26 @@ jobs: | |
hv: [kvm] | ||
platform: ["generic"] | ||
if: github.event.review.state == 'approved' | ||
uses: lf-edge/eden/.github/workflows/[email protected].10 | ||
uses: lf-edge/eden/.github/workflows/[email protected].12 | ||
secrets: inherit | ||
with: | ||
eve_image: "evebuild/pr:${{ github.event.pull_request.number }}" | ||
eve_artifact_name: eve-${{ matrix.hv }}-${{ matrix.arch }}-${{ matrix.platform }} | ||
artifact_run_id: ${{ needs.get-run-id.outputs.result }} | ||
eden_version: "0.9.10" | ||
eden_version: "0.9.12" | ||
|
||
test_suite_master: | ||
if: github.ref == 'refs/heads/master' | ||
uses: lf-edge/eden/.github/workflows/[email protected].10 | ||
uses: lf-edge/eden/.github/workflows/[email protected].12 | ||
secrets: inherit | ||
with: | ||
eve_image: "lfedge/eve:snapshot" | ||
eden_version: "0.9.10" | ||
eden_version: "0.9.12" | ||
|
||
test_suite_tag: | ||
if: startsWith(github.ref, 'refs/tags') | ||
uses: lf-edge/eden/.github/workflows/[email protected].10 | ||
uses: lf-edge/eden/.github/workflows/[email protected].12 | ||
secrets: inherit | ||
with: | ||
eve_image: "lfedge/eve:${{ github.ref_name }}" | ||
eden_version: "0.9.10" | ||
eden_version: "0.9.12" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,9 @@ See [EVE Wiki](https://wiki.lfedge.org/display/EVE/Community) for governance gui | |
## List of maintainers (in alphabetical order) | ||
|
||
* Avi Deitcher `[email protected]` | ||
* Nikolay Martyanov `[email protected]` | ||
* Erik Nordmark `[email protected]` | ||
* Milan Lenco `[email protected]` | ||
* Roman Penyaev `[email protected]` | ||
* Renê Pinto `[email protected]` | ||
* Roman Shaposhnik `[email protected]` |
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
Oops, something went wrong.