Skip to content

Commit

Permalink
Merge pull request #2255 from golemfactory/mateusz/dod-github-action
Browse files Browse the repository at this point in the history
github action to add and verify DoD with PRs
  • Loading branch information
mateuszsrebrny authored Oct 13, 2022
2 parents cd8e662 + 3f6b95f commit 3a49f1b
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/dod-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Definition of Done
on:
pull_request:
types: [opened, edited]

jobs:
check-dod:
runs-on: ubuntu-20.04
steps:
- name: Clone Repo
uses: actions/checkout@v3
- name: Check DoD
uses: platisd/definition-of-done@master
with:
dod_yaml: 'dod.yml'
github_token: ${{ secrets.CORE_BOARD_ACTIONS_TOKEN }}
3 changes: 3 additions & 0 deletions dod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
dod:
- 'The code is tested enough'
- 'Testability insights are recorded on https://www.notion.so/golemnetwork/Testability-a42886f72cb649129cddd65bc9dfe2b9'

0 comments on commit 3a49f1b

Please sign in to comment.