Skip to content

docs: introduce ADRs #1505

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 30, 2022
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
2 changes: 2 additions & 0 deletions .github/workflows/e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@ on:
pull_request:
paths-ignore:
- 'docs/**'
- 'adr/**'
branches: [ main, next ]
push:
paths-ignore:
- 'docs/**'
- 'adr/**'
branches:
- main
- next
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
pull_request:
paths-ignore:
- 'docs/**'
- 'adr/**'
branches: [ main, v1, v2, v3, next ]
workflow_dispatch:
jobs:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ on:
push:
paths-ignore:
- 'docs/**'
- 'adr/**'
branches: [ main ]
pull_request:
paths-ignore:
- 'docs/**'
- 'adr/**'
types: [ opened, synchronize, reopened ]

jobs:
Expand Down
29 changes: 29 additions & 0 deletions adr/001-Introducing-ADRs.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
# Using Architectural Decision Records

In order to into to document and facilitate discussion over architecture and other design question of the project
we introduce usage of [ADR](https://adr.github.io/).

In each ADR file, write these sections:

# Title

## Status

What is the status, such as proposed, accepted, rejected, deprecated, superseded, etc.?

## Context

What is the issue that we're seeing that is motivating this decision or change?

## Decision

What is the change that we're proposing and/or doing?

## Consequences

What becomes easier or more difficult to do because of this change?

## Notes

Other notes optionally added to the ADR.
Soo other good materials for the ADRs: