Development
: Define DTO architecture test per module with module-specific thresholds
#4454
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pull Request Ready for Review | |
on: | |
pull_request_target: | |
types: [ready_for_review] | |
jobs: | |
pullequestReadyForReview: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label "ready for review" | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
await github.rest.issues.addLabels({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: ['ready for review'] | |
}) |