Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
* @open-edge-platform/image-composer-maintain
# SPDX-FileCopyrightText: 2026 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0

# These owners will be the default owners for everything in the repo. Unless a
# later match takes precedence, these owners will be requested for review when
# someone opens a pull request.

# Everything requires image-composer-maintain team review by default
* @open-edge-platform/os-image-composer-maintain

# CI files
.github/ @adimoft @daveroge @shanedonohue @manilk1x

# documentation content
/docs @open-edge-platform/open-edge-platform-docs-write
Expand Down
38 changes: 38 additions & 0 deletions .github/workflows/post-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
# SPDX-FileCopyrightText: (C) 2026 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
---

name: Post-Merge CI Pipeline
permissions:
contents: read

on: # yamllint disable-line rule:truthy
push:
branches:
- main
- release-*
workflow_dispatch:
jobs:
post-merge:
permissions:
contents: read
security-events: write
id-token: write
uses: open-edge-platform/orch-ci/.github/workflows/post-merge.yml@467367d6f859a4654f2645ca78efd60035cf390c # 2026.0.8
with:
run_build: false
run_version_check: true
run_dep_version_check: false
run_version_tag: true
run_docker_build: false
run_docker_push: false
run_helm_build: false
run_helm_push: false
run_version_dev: true
prefix_tag_separator: "/"
trivy_image_skip: "ghcr.io/dependabot/dependabot-updater-core:latest"
secrets:
SYS_EMF_GH_TOKEN: ${{ secrets.SYS_EMF_GH_TOKEN }}
NO_AUTH_ECR_PUSH_USERNAME: ${{ secrets.NO_AUTH_ECR_PUSH_USERNAME }}
NO_AUTH_ECR_PUSH_PASSWD: ${{ secrets.NO_AUTH_ECR_PUSH_PASSWD }}
MSTEAMS_WEBHOOK: ${{ secrets.TEAMS_WEBHOOK }}
30 changes: 30 additions & 0 deletions .github/workflows/pre-merge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# SPDX-FileCopyrightText: (C) 2026 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
---

name: Pre-Merge CI Pipeline
permissions:
contents: read

on: # yamllint disable-line rule:truthy
pull_request:
branches:
- main
workflow_dispatch:
jobs:
pre-merge:
permissions:
contents: read
uses: open-edge-platform/orch-ci/.github/workflows/pre-merge.yml@467367d6f859a4654f2645ca78efd60035cf390c # 2026.0.8
with:
run_version_check: false
run_reuse_check: false
run_security_scans: true
run_dep_version_check: false
run_build: false
run_lint: false
run_test: false
run_validate_clean_folder: false
run_docker_build: false
bootstrap_tools: "go,gotools,nodejs"
trivy_config_path: trivy.yaml
Loading