diff --git a/.github/dod.yml b/.github/dod.yml deleted file mode 100644 index ed9e2149d2..0000000000 --- a/.github/dod.yml +++ /dev/null @@ -1,6 +0,0 @@ -dod: - - Meaningful pull request title for the release notes - - Pull request is linked to an issue and all changes relate to the issue - - Tests to protect this code implemented (if applicable) - - Manual test performed successfully (if applicable) - - Documentation or migration has been updated (if applicable) diff --git a/.github/workflows/dod-checker.yml b/.github/workflows/dod-checker.yml deleted file mode 100644 index 05cf3286df..0000000000 --- a/.github/workflows/dod-checker.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Definition of Done -on: - pull_request: - types: [opened, edited, synchronize] - -concurrency: - group: pr-{{ github.event.pull_request.number }} - cancel-in-progress: true - -jobs: - check-dod: - runs-on: ubuntu-latest - steps: - - name: Print Pull Request ID - run: | - echo "Pull Request Number: ${{ github.event.pull_request.number }}" - - name: Clone Repo - uses: actions/checkout@v3 - - name: Check DoD - uses: platisd/definition-of-done@master - with: - dod_yaml: '.github/dod.yml' - message_header: 'The A11y and PO reviews will only take place after all other DoD steps have been completed by the Developer:' - github_token: ${{ secrets.GITHUB_TOKEN }}