[core] Add initial domain support #5218
Workflow file for this run
This file contains hidden or 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: Require Release Notes Label | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - labeled | |
| - unlabeled | |
| jobs: | |
| check_labels: | |
| name: Check Labels | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: docker://agilepathway/pull-request-label-checker:v1.6.32 | |
| with: | |
| one_of: Feature,Performance,API Modification,Deprecation,Backend Code Generation,Bugfix,Documentation,Dependency Update,Internal,Scala 3,No Release Notes | |
| repo_token: ${{ secrets.GITHUB_TOKEN }} |