SSCSCI-1221: Verify IBCA reference before assigning a new user to an ibca case #1642
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: Diff CCD definition | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
buildBranch: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
path: build/branch | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: branch | |
path: build/branch/definitions/benefit/sheets/* | |
buildMaster: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: master | |
path: build/master | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: master | |
path: build/master/definitions/benefit/sheets/* | |
report: | |
runs-on: ubuntu-latest | |
needs: [buildBranch, buildMaster] | |
steps: | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- uses: actions/download-artifact@v3 | |
with: | |
name: branch | |
path: build/branch | |
- uses: actions/download-artifact@v3 | |
with: | |
name: master | |
path: build/master | |
- name: Generate report | |
id: ccd-diff | |
run: | | |
REPORT="$(npx -q @hmcts/ccd-diff build/master build/branch)" | |
REPORT="${REPORT//'%'/'%25'}" | |
REPORT="${REPORT//$'\n'/'%0A'}" | |
REPORT="${REPORT//$'\r'/'%0D'}" | |
echo $REPORT | |
echo "::set-output name=content::$REPORT" | |
- name: Display | |
run: | | |
echo "${{ steps.ccd-diff.outputs.content }}" | |
- name: Add report | |
uses: thollander/actions-comment-pull-request@v1 | |
with: | |
message: | | |
# CCD diff report | |
${{ steps.ccd-diff.outputs.content }} | |
comment_includes: CCD diff report | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |