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: 2 additions & 12 deletions .github/workflows/format.yml → .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,5 @@
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************

name: Formatting checks
permissions:
contents: read
actions: write
on:
pull_request:
types: [opened, reopened, synchronize]
merge_group:
types: [checks_requested]
jobs:
formatting-check:
uses: eclipse-score/cicd-workflows/.github/workflows/format.yml@f57b605a284ca117bcfd9f83ea427096faaac7d1
# Use Dockerfile to get dependabot version bumps after new image is released
FROM ghcr.io/eclipse-score/devcontainer:v1.9.0
9 changes: 5 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
{
/// This devcontainer adds some ETAS-specific customizations to the S-CORE base devcontainer
/// This devcontainer adds some specific customizations to the S-CORE base devcontainer
/// Such as:
/// - CA Certificates

"name": "eclipse-s-core-etas",
// Use the same image as the project's devcontainer
"image": "ghcr.io/eclipse-score/devcontainer:latest",
"name": "eclipse-s-core",
"build": {
"dockerfile": "Dockerfile"
},

"features": {
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {}
Expand Down
46 changes: 46 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# *******************************************************************************
# Copyright (c) 2026 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache License Version 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
version: 2
updates:
- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
groups:
github-actions:
patterns:
- "*"
commit-message:
prefix: chore(github-actions)

- package-ecosystem: pre-commit
directory: /
schedule:
interval: weekly
groups:
pre-commit:
patterns:
- "*"
commit-message:
prefix: chore(pre-commit)

- package-ecosystem: docker
directory: /.devcontainer
schedule:
interval: weekly
groups:
docker:
patterns:
- "*"
commit-message:
prefix: chore(docker)
24 changes: 0 additions & 24 deletions .github/workflows/copyright.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
name: Bzlmod Lockfile Check
name: On PR Checks
permissions:
contents: read
on:
Expand All @@ -22,7 +22,5 @@ on:
branches:
- main
jobs:
bzlmod-lock:
uses: eclipse-score/cicd-workflows/.github/workflows/bzlmod-lock-check.yml@c1c90b1a82a1fab0fc202979dde6686b2162d5a8 # v0.0.0
with:
working-directory: .
common:
uses: eclipse-score/cicd-workflows/.github/workflows/on-pr.yml@on-pr/v0.0.0
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,9 @@ user.bazelrc
# Ruff
.ruff_cache

# docs:incremental and docs:ide_support build artifacts
/_build
# docs build artifacts
_build
ubproject.toml

# Vale - editorial style guide
.vale.ini
Expand Down Expand Up @@ -74,7 +75,6 @@ tests/**/*.xml
*.orig
.venv_docs
MODULE.lock.bazel
_build/
.clwb
.idea
external
Expand Down
5 changes: 1 addition & 4 deletions MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@
#
# SPDX-License-Identifier: Apache-2.0
# *******************************************************************************
module(
name = "score_lifecycle_health",
version = "0.0.0",
)
module(name = "score_lifecycle_health")

# Bazel global rules
bazel_dep(name = "bazel_skylib", version = "1.9.0")
Expand Down
6 changes: 3 additions & 3 deletions MODULE.bazel.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 1 addition & 18 deletions conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,13 @@

project = "Lifecycle and Health Management"
project_url = "https://eclipse-score.github.io/lifecycle/"
project_prefix = "LIFE_"
author = "S-CORE"
version = "0.1"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration


extensions = [
"sphinx_design",
"sphinx_needs",
"sphinxcontrib.plantuml",
"score_plantuml",
"score_metamodel",
"score_draw_uml_funcs",
"score_source_code_linker",
"score_layout",
"myst_parser",
]
extensions = ["score_sphinx_bundle"]

include_patterns = [
"index.rst",
Expand All @@ -63,11 +51,6 @@
".venv_docs",
]

templates_path = ["templates"]

# Enable numref
numfig = True


def setup(app):
# When Sphinx runs inside a Bazel action (bazel build //:needs_json), the
Expand Down
Loading