Skip to content

Implement character limit feature for inputs #5829

Implement character limit feature for inputs

Implement character limit feature for inputs #5829

Workflow file for this run

name: Definition of Done
on:
pull_request:
types: [opened, edited, synchronize, ready_for_review]
concurrency:
group: 'workflow-${{ github.workflow }}-${{ github.ref }}'
cancel-in-progress: true
jobs:
check-dod:
# Skip this job for draft pull requests as they are considered works in progress
# or the base clone URL may be different than the head clone URL.
if: |
github.event.pull_request.draft == false &&
github.event.pull_request.head.repo.fork == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- 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 }}