Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: testing PR valiator #6290

Open
wants to merge 4 commits into
base: fix/pr-validator
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 21 additions & 5 deletions .github/workflows/pr-issue-validator.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,29 @@
name: PR Validation (Test)
name: Validate Pull Request

on:
pull_request:
types: [opened, synchronize, reopened, edited]
branches:
- fix/pr-validator # This ensures the workflow runs only for PRs targeting your branch

types:
- opened
- synchronize
- edited
- reopened
branches:
- 'main'
- 'release-**'
- 'develop'
- 'hotfix-**'
- 'fix/pr-validator'
# paths-ignore:
# - 'docs/**'
# - '.github/'
# - 'CHANGELOG/'
# - 'charts/'
# - 'manifests/'
# - 'sample-docker-templates/'

jobs:
pr-validation:
uses: devtron-labs/utilities/.github/workflows/pr-validator.yaml@feat/central-pr-validator
secrets: inherit
with:
validate_sql: true # Enable/disable SQL validation
1 change: 1 addition & 0 deletions test.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
demo changes for PR validator
Loading