From e0857077b64f770892a723536b2273e20e2e3bb3 Mon Sep 17 00:00:00 2001 From: David Monichi Date: Sat, 14 Dec 2024 17:37:59 +0100 Subject: [PATCH 1/2] [#373] add fsd extension to supported scl types Signed-off-by: David Monichi --- .../org/lfenergy/compas/scl/extensions/model/SclFileType.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scl-extension/src/main/java/org/lfenergy/compas/scl/extensions/model/SclFileType.java b/scl-extension/src/main/java/org/lfenergy/compas/scl/extensions/model/SclFileType.java index f1115f7..f215395 100644 --- a/scl-extension/src/main/java/org/lfenergy/compas/scl/extensions/model/SclFileType.java +++ b/scl-extension/src/main/java/org/lfenergy/compas/scl/extensions/model/SclFileType.java @@ -18,7 +18,8 @@ public enum SclFileType { CID("Configured IED Description"), SED("System Exchange Description"), ISD("IED Specification Description"), - STD("System Template Definition"); + STD("System Template Definition"), + FSD("Function Specification Description"); private final String description; From b924a5680bad4ff1cf5fdf67ae6e7983090fc9c8 Mon Sep 17 00:00:00 2001 From: Christopher Lepski Date: Mon, 20 Jan 2025 14:25:27 +0100 Subject: [PATCH 2/2] chore: Remove automate projects workflow Signed-off-by: Christopher Lepski Signed-off-by: David Monichi --- .github/workflows/automate-projects.yml | 28 ------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/automate-projects.yml diff --git a/.github/workflows/automate-projects.yml b/.github/workflows/automate-projects.yml deleted file mode 100644 index ec1a05d..0000000 --- a/.github/workflows/automate-projects.yml +++ /dev/null @@ -1,28 +0,0 @@ -# SPDX-FileCopyrightText: 2022 Alliander N.V. -# -# SPDX-License-Identifier: Apache-2.0 - -name: Add issues and pull request to project boards - -on: [ issues, pull_request, pull_request_target ] - -jobs: - github-actions-automate-projects: - runs-on: ubuntu-latest - - if: ${{ (github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]') || (github.actor == 'dependabot[bot]' && github.event_name == 'pull_request_target') }} - steps: - - name: add-new-issues-to-organization-based-project-column - if: github.event_name == 'issues' && github.event.action == 'opened' - uses: alex-page/github-project-automation-plus@v0.9.0 - with: - project: CoMPAS Issues Overview Board - column: To do - repo-token: ${{ secrets.ORG_GITHUB_ACTION_SECRET }} - - name: add-new-pull-request-to-organization-based-project-column - if: (github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && github.event.action == 'opened' - uses: alex-page/github-project-automation-plus@v0.9.0 - with: - project: CoMPAS Pull Request Overview Board - column: To do - repo-token: ${{ secrets.ORG_GITHUB_ACTION_SECRET }}