-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into add_sonarcloud
- Loading branch information
Showing
865 changed files
with
37,340 additions
and
19,955 deletions.
There are no files selected for viewing
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,103 @@ | ||
# SPDX-FileCopyrightText: 2023 Alliander N.V. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Add pull requests to the overview board | ||
|
||
on: | ||
workflow_run: | ||
workflows: [Prepare PR data] | ||
types: [completed] | ||
|
||
env: | ||
todo: Pending | ||
changes_requested: Changes Requested | ||
approved: Approved | ||
|
||
jobs: | ||
read-data-and-automate: | ||
runs-on: ubuntu-latest | ||
if: github.event.workflow_run.conclusion == 'success' | ||
outputs: | ||
pr_node_id: ${{ steps.pr_node_id.outputs.content }} | ||
event_action: ${{ steps.event_action.outputs.content }} | ||
review_pr_node_id: ${{ steps.review_pr_node_id.outputs.content }} | ||
review_state: ${{ steps.review_state.outputs.content }} | ||
steps: | ||
# Data retrieval steps in case of a PR event | ||
- name: Download PR data artifact | ||
if: github.event.workflow_run.event == 'pull_request' || github.event.workflow_run.event == 'pull_request_target' | ||
uses: dawidd6/action-download-artifact@v2 | ||
with: | ||
workflow: Prepare PR data | ||
run_id: ${{ github.event.workflow_run.id }} | ||
name: PR_DATA | ||
- name: Read PR event's PR_NODE_ID.txt | ||
if: github.event.workflow_run.event == 'pull_request' || github.event.workflow_run.event == 'pull_request_target' | ||
id: pr_node_id | ||
uses: juliangruber/read-file-action@v1 | ||
with: | ||
path: ./PR_NODE_ID.txt | ||
trim: true | ||
- name: Read PR event's EVENT_ACTION.txt | ||
if: github.event.workflow_run.event == 'pull_request' || github.event.workflow_run.event == 'pull_request_target' | ||
id: event_action | ||
uses: juliangruber/read-file-action@v1 | ||
with: | ||
path: ./EVENT_ACTION.txt | ||
trim: true | ||
# Data retrieval steps in case of a PR review event | ||
- name: Download PR review data artifact | ||
if: github.event.workflow_run.event == 'pull_request_review' | ||
uses: dawidd6/action-download-artifact@v2 | ||
with: | ||
workflow: Prepare PR data | ||
run_id: ${{ github.event.workflow_run.id }} | ||
name: REVIEW_DATA | ||
- name: Read PR review event's PR_NODE_ID.txt | ||
if: github.event.workflow_run.event == 'pull_request_review' | ||
id: review_pr_node_id | ||
uses: juliangruber/read-file-action@v1 | ||
with: | ||
path: ./PR_NODE_ID.txt | ||
trim: true | ||
- name: Read PR review event's REVIEW_STATE.txt | ||
if: github.event.workflow_run.event == 'pull_request_review' | ||
id: review_state | ||
uses: juliangruber/read-file-action@v1 | ||
with: | ||
path: ./REVIEW_STATE.txt | ||
trim: true | ||
# Project automation steps | ||
- name: Move PR to ${{ env.todo }} | ||
if: ((github.event.workflow_run.event == 'pull_request' || | ||
github.event.workflow_run.event == 'pull_request_target') && | ||
(steps.event_action.outputs.content == 'opened' || | ||
steps.event_action.outputs.content == 'reopened')) || | ||
(github.event.workflow_run.event == 'pull_request_review' && | ||
steps.review_state.outputs.content == 'dismissed') | ||
uses: leonsteinhaeuser/[email protected] | ||
with: | ||
project_id: 7 | ||
gh_token: ${{ secrets.ORG_GITHUB_ACTION_SECRET }} | ||
organization: openscd | ||
resource_node_id: ${{ github.event.workflow_run.event == 'pull_request_review' && steps.review_pr_node_id.outputs.content || steps.pr_node_id.outputs.content }} | ||
status_value: ${{ env.todo }} | ||
- name: Move PR to ${{env.approved}} | ||
if: github.event.workflow_run.event == 'pull_request_review' && steps.review_state.outputs.content == 'approved' | ||
uses: leonsteinhaeuser/[email protected] | ||
with: | ||
project_id: 7 | ||
gh_token: ${{ secrets.ORG_GITHUB_ACTION_SECRET }} | ||
organization: openscd | ||
resource_node_id: ${{ steps.review_pr_node_id.outputs.content }} | ||
status_value: ${{ env.approved }} | ||
- name: Move PR to ${{env.changes_requested}} | ||
if: github.event.workflow_run.event == 'pull_request_review' && steps.review_state.outputs.content == 'changes_requested' | ||
uses: leonsteinhaeuser/[email protected] | ||
with: | ||
project_id: 7 | ||
gh_token: ${{ secrets.ORG_GITHUB_ACTION_SECRET }} | ||
organization: openscd | ||
resource_node_id: ${{ steps.review_pr_node_id.outputs.content }} | ||
status_value: ${{ env.changes_requested }} |
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,10 @@ on: | |
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
shell: bash | ||
working-directory: packages/open-scd | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
@@ -18,13 +22,13 @@ jobs: | |
|
||
- name: Install and Build | ||
run: | | ||
npm ci | ||
npm clean-install | ||
npm run-script build | ||
- name: Deploy | ||
uses: JamesIves/[email protected] | ||
with: | ||
branch: master | ||
folder: build | ||
folder: packages/open-scd/build | ||
repository-name: openscd/openscd.github.io | ||
ssh-key: ${{ secrets.DEPLOY_KEY }} | ||
ssh-key: ${{ secrets.DEPLOY_KEY }} |
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,37 @@ | ||
# SPDX-FileCopyrightText: 2023 Alliander N.V. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
name: Prepare PR data | ||
# Necessary step to allow adding external PRs to the project board | ||
|
||
on: [pull_request, pull_request_target, pull_request_review] | ||
|
||
jobs: | ||
save-pr-data: | ||
name: Save PR data to file | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.pull_request.user.login != 'github-actions[bot]' }} | ||
steps: | ||
- name: Save PR node_id and event_action to files | ||
if: github.event_name == 'pull_request' || github.event_name == 'pull_request_target' | ||
run: echo ${{ github.event.pull_request.node_id }} > PR_NODE_ID.txt && echo ${{ github.event.action }} > EVENT_ACTION.txt | ||
- name: Archive PR node_id and event_action | ||
if: github.event_name == 'pull_request' || github.event_name == 'pull_request_target' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: PR_DATA | ||
path: | | ||
PR_NODE_ID.txt | ||
EVENT_ACTION.txt | ||
- name: Save PR node_id and review_state to files | ||
if: github.event_name == 'pull_request_review' | ||
run: echo ${{ github.event.pull_request.node_id }} > PR_NODE_ID.txt && echo ${{ github.event.review.state }} > REVIEW_STATE.txt | ||
- name: Archive PR and review_state | ||
if: github.event_name == 'pull_request_review' | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: REVIEW_DATA | ||
path: | | ||
PR_NODE_ID.txt | ||
REVIEW_STATE.txt |
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 @@ | ||
# This workflow labels stale issues. | ||
# | ||
# For more information, see: | ||
# https://github.com/actions/stale | ||
name: Mark stale issues | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 19 * * *' | ||
|
||
jobs: | ||
stale: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
|
||
steps: | ||
- uses: actions/stale@v5 | ||
with: | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
days-before-stale: 60 | ||
days-before-close: -1 | ||
days-before-pr-stale: -1 | ||
days-before-pr-close: -1 | ||
|
||
stale-issue-label: 'stale' | ||
stale-issue-message: | | ||
Hello there, | ||
Thank you for opening this issue! We appreciate your interest in our project. | ||
However, it seems that this issue hasn't had any activity for a while. To ensure that our issue tracker remains organized and efficient, we occasionally review and address stale issues. | ||
If you believe this issue is still relevant and requires attention, please provide any additional context, updates, or details that might help us understand the problem better. | ||
Feel free to continue the conversation here. | ||
If the issue is no longer relevant, you can simply close it. If you're uncertain, you can always reopen it later. | ||
Remember, our project thrives on community contributions, and your input matters. We're here to collaborate and improve. | ||
Thank you for being part of this journey! | ||
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
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,28 @@ | ||
# 1. Record architecture decisions | ||
|
||
Date: 2023-07 | ||
|
||
## Status | ||
|
||
Accepted | ||
|
||
## Context | ||
|
||
We need to record the architectural decisions made on this project. | ||
|
||
## Decision | ||
|
||
We will follow the decisions recorded in the central organizational | ||
repository ([.github](https://github.com/openscd/.github)), | ||
and record new repo-specific decisions in this repository. | ||
|
||
|
||
We write ADRs in the `docs/decisions` folder instead of a standard `doc/adr`: | ||
- `docs` instead of `doc` because `doc` is used for the generated documentation. | ||
- `decisions` instead of `adrs` because it is more explicit and a followed practice: | ||
[↗ Markdown Any Decision Records - Applying MADR to your project ](https://adr.github.io/madr/#applying-madr-to-your-project) | ||
|
||
## Consequences | ||
|
||
- It will be harder to track which decisions have to be taken into consideration | ||
- Local decisions will be easier to find |
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,33 @@ | ||
# 2. Use Monorepo | ||
|
||
Date: 2023-08 | ||
|
||
## Status | ||
|
||
Accepted | ||
|
||
## Context | ||
|
||
We want: | ||
- better access management to core functionalities, plugins and ui components | ||
- easier maintainability and refactorability of critical parts | ||
- more shareable code | ||
|
||
|
||
## Decision | ||
|
||
We will use a monorepo to manage the codebase for the time being. | ||
|
||
To control access to the codebase we will use CODEOWNERS files. | ||
|
||
|
||
## Consequences | ||
|
||
- it makes the the dependency discovery and management easier between packages | ||
- we can add packages that can be deployed and published independently and still used directly inside the monorepo | ||
- it will allow us to experiment and beta test packages before publishing them | ||
- CI pipeline runs will be faster because changes are more separated | ||
- it will make it harder to bundle and distribute parts of the base distribution | ||
- it moves the complexity of package management into a concentrated place | ||
|
||
|
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,4 @@ | ||
# Decisions | ||
|
||
- [ADR-0001: Record architecture decisions](0001-record-architecture-decisions.md) <kbd>✅ active</kbd> | ||
- [ADR-0002: Use Monorepo](0002-use-monorepo.md) <kbd>✅ active</kbd> |
Oops, something went wrong.