fix: GEO-1262 - save announcements in which plain text description length <= 2000 chars, but rich text is > 2000 chars. #4515
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: PR Validate | |
on: | |
pull_request: | |
types: [edited, opened, synchronize, reopened, ready_for_review] | |
concurrency: | |
group: ${{ github.workflow }}-edit-${{ github.event.number }} | |
cancel-in-progress: true | |
jobs: | |
validate: | |
name: Validate PR | |
if: (! github.event.pull_request.draft) | |
uses: bcgov/quickstart-openshift-helpers/.github/workflows/[email protected] | |
with: | |
markdown_links: | | |
- [Frontend](https://pay-transparency-pr-${{ github.event.number }}-frontend.apps.silver.devops.gov.bc.ca) | |
- [Admin Frontend](https://pay-transparency-pr-${{ github.event.number }}-admin-frontend.apps.silver.devops.gov.bc.ca) | |
- [Backend external API console](https://pay-transparency-pr-${{ github.event.number }}-backend-external.apps.silver.devops.gov.bc.ca/api/V1/docs) | |
results: | |
name: Validate Results | |
needs: [validate] | |
runs-on: ubuntu-22.04 | |
steps: | |
- run: echo "Workflow completed successfully!" |