Skip to content

Commit 6fac3cc

Browse files
committed
chore: add dod and update abgrenzung.jpg
1 parent 2627c25 commit 6fac3cc

File tree

4 files changed

+33
-0
lines changed

4 files changed

+33
-0
lines changed

.github/dod.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
dod:
2+
- Maturation completed and documented
3+
- Meaningful pull request title for the release notes
4+
- Pull request is linked to an issue
5+
- All changes relate to the issue
6+
- No TODOs or commented out code in the final commit
7+
- Tests to protect this code implemented (if applicable)
8+
- Manual test performed successfully (if applicable)
9+
- Documentation or migration has been updated (if applicable)

.github/workflows/dod-checker.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Definition of Done
2+
on:
3+
pull_request:
4+
types: [opened, edited, synchronize]
5+
6+
concurrency:
7+
group: pr-{{ github.event.pull_request.number }}
8+
cancel-in-progress: true
9+
10+
jobs:
11+
check-dod:
12+
runs-on: ubuntu-20.04
13+
steps:
14+
- name: Print Pull Request ID
15+
run: |
16+
echo "Pull Request Number: ${{ github.event.pull_request.number }}"
17+
- name: Clone Repo
18+
uses: actions/checkout@v3
19+
- name: Check DoD
20+
uses: platisd/definition-of-done@master
21+
with:
22+
dod_yaml: '.github/dod.yml'
23+
message_header: 'The A11y and PO reviews will only take place after all other DoD steps have been completed by the Developer:'
24+
github_token: ${{ secrets.GITHUB_TOKEN }}

static/assets/abgrenzung.jpg

5.62 KB
Loading
5.62 KB
Loading

0 commit comments

Comments
 (0)