CASL-801 masking fully (with contains) + added masking to event handler #1508
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: CI-Only Workflow for V3 branches | |
| # Trigger for specified criteria (specifically for PRs against stable branches) | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| branches: | |
| - 'v3*' | |
| permissions: | |
| checks: write # for junit reporting | |
| pull-requests: write # for jacoco PR comments | |
| jobs: | |
| ### Job to Build and Publish artifacts | |
| Build-and-Publish: | |
| uses: ./.github/workflows/reusable-build-and-publish-v3s.yml |