Skip to content

Commit

Permalink
fix(ci): introduce pr validate/edit workflow (#1781)
Browse files Browse the repository at this point in the history
  • Loading branch information
DerekRoberts authored Feb 1, 2024
1 parent fddf4ba commit 53dc33d
Show file tree
Hide file tree
Showing 2 changed files with 62 additions and 39 deletions.
39 changes: 0 additions & 39 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,45 +10,6 @@ concurrency:
cancel-in-progress: true

jobs:
# PR only, skip for merge_group
conventional-commits:
name: Conventional Commits
if: github.event_name == 'pull_request'
runs-on: ubuntu-22.04
steps:
- uses: amannn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

# PR only, skip for merge_group
pr-description-add:
name: PR Description Add
if: github.event_name == 'pull_request'
env:
DOMAIN: apps.silver.devops.gov.bc.ca
PREFIX: ${{ github.event.repository.name }}
runs-on: ubuntu-22.04
permissions:
pull-requests: write
timeout-minutes: 1
steps:
- uses: bcgov-nr/[email protected]
with:
add_markdown: |
---
Thanks for the PR!
Deployments, as required, will be available below:
- [Frontend](https://${{ env.PREFIX }}-${{ github.event.number }}-frontend.${{ env.DOMAIN }})
- [Backend](https://${{ env.PREFIX }}-${{ github.event.number }}-frontend.${{ env.DOMAIN }}/api)
Please create PRs in draft mode. Mark as ready to enable:
- [Analysis Workflow](https://github.com/${{ github.repository }}/actions/workflows/analysis.yml)
After merge, new images are deployed in:
- [Merge Workflow](https://github.com/${{ github.repository }}/actions/workflows/merge.yml)
# Find initial PR number (for merge queues)
vars:
name: Set Variables
Expand Down
62 changes: 62 additions & 0 deletions .github/workflows/pr-validate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: PR Validate

on:
pull_request:
types: [edited, opened, reopened]

concurrency:
# Cancel in progress for PR open and close, but not merge_group
group: ${{ github.workflow }}-${{ github.event.number || github.event.merge_group.base_sha }}
cancel-in-progress: true

jobs:
dump:
runs-on: ubuntu-22.04
steps:
- name: Dump context
uses: utenx/gh-dump-context@v1
with:
context: github

# PR only, skip for merge_group
conventional-commits:
name: Conventional Commits
runs-on: ubuntu-22.04
steps:
- uses: amannn/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- if: failure() && !success()
run: |
echo "Please use conventional commits in your PR title and re-run this job."
echo "https://www.conventionalcommits.org/en/v1.0.0/"
exit 1
# PR only, skip for merge_group
pr-description-add:
name: PR Description Add
env:
DOMAIN: apps.silver.devops.gov.bc.ca
PREFIX: ${{ github.event.repository.name }}
runs-on: ubuntu-22.04
permissions:
pull-requests: write
timeout-minutes: 1
steps:
- uses: bcgov-nr/[email protected]
with:
add_markdown: |
---
Thanks for the PR!
Deployments, as required, will be available below:
- [Frontend](https://${{ env.PREFIX }}-${{ github.event.number }}-frontend.${{ env.DOMAIN }})
- [Backend](https://${{ env.PREFIX }}-${{ github.event.number }}-frontend.${{ env.DOMAIN }}/api)
Please create PRs in draft mode. Mark as ready to enable:
- [Analysis Workflow](https://github.com/${{ github.repository }}/actions/workflows/analysis.yml)
After merge, new images are deployed in:
- [Merge Workflow](https://github.com/${{ github.repository }}/actions/workflows/merge.yml)

0 comments on commit 53dc33d

Please sign in to comment.