feat: add ability to assign run tags in experimental c# client #15504
Workflow file for this run
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: Validate PR title | |
on: | |
pull_request: | |
types: [opened, edited, synchronize] | |
jobs: | |
cc: | |
name: check conventional commit compliance | |
runs-on: ubuntu-latest | |
steps: | |
# check the basic semantic compliance of the PR title | |
# https://github.com/amannn/action-semantic-pull-request/releases | |
- uses: amannn/action-semantic-pull-request@v5.5.3 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
types: | | |
feat | |
fix | |
refactor | |
docs | |
style | |
chore | |
revert | |
security | |
# Product based scopes | |
scopes: | | |
artifacts | |
integrations | |
launch | |
sdk | |
sweeps | |
requireScope: false | |
# Ensures the subject doesn't start with an uppercase character. | |
subjectPattern: ^(?![A-Z]).+$ | |
subjectPatternError: | | |
The subject "{subject}" found in the pull request title "{title}" | |
didn't match the configured pattern. Please ensure that the subject | |
doesn't start with an uppercase character. |