Skip to content

PETOSS-588 | commit lint step added in pipeline #62

PETOSS-588 | commit lint step added in pipeline

PETOSS-588 | commit lint step added in pipeline #62

Workflow file for this run

name: OAS PR health check
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
pr-health-check:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
actions: read
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node environment
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run commitlint on PR title.
run: |
echo "path: $GITHUB_EVENT_PATH"
PR_TITLE=$(jq -r '.pull_request.title' "$GITHUB_EVENT_PATH")
echo "PR title - $PR_TITLE"
echo "$PR_TITLE" | npx commitlint
- name: Run commitlint on PR commits
run: |
npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose
# ***** YAML Linting steps are disabled for now *****
# - name: Install Open API yaml linter
# run: npm i -g @quobix/vacuum
# - name: Run open API validation for yamls
# run: |
# docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli:v4.3.1 validate -i /local/xero_accounting.yaml
# docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli:v4.3.1 validate -i /local/xero_assets.yaml
# docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli:v4.3.1 validate -i /local/xero_bankfeeds.yaml
# docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli:v4.3.1 validate -i /local/xero_files.yaml
# docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli:v4.3.1 validate -i /local/xero-app-store.yaml
# docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli:v4.3.1 validate -i /local/xero-finance.yaml
# docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli:v4.3.1 validate -i /local/xero-identity.yaml
# docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli:v4.3.1 validate -i /local/xero-payroll-au.yaml
# docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli:v4.3.1 validate -i /local/xero-payroll-nz.yaml
# docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli:v4.3.1 validate -i /local/xero-payroll-uk.yaml
# docker run --rm -v ${PWD}:/local openapitools/openapi-generator-cli:v4.3.1 validate -i /local/xero-projects.yaml
# working-directory: ${{ github.workspace }}
# - name: Run linting
# run: |
# vacuum lint -d -e xero_accounting.yaml xero_assets.yaml xero_bankfeeds.yaml xero_files.yaml xero-app-store.yaml xero-finance.yaml xero-identity.yaml xero-payroll-au.yaml xero-payroll-nz.yaml xero-payroll-uk.yaml xero-projects.yaml
# ****** Linting steps are disabled for now *******
# - name: Install octokit dependencies
# run: npm i
# working-directory: ${{ github.workspace }}/.github/octokit
# - name: Get github app access token
# id: get_access_token
# env:
# GITHUB_APP_ID: ${{ secrets.XERO_GITHUB_APP_ID }}
# GITHUB_APP_PRIVATE_KEY: ${{ secrets.XERO_GITHUB_APPLICATION_KEY }}
# uses: actions/github-script@v7
# with:
# result-encoding: string
# script: |
# const { getAccessToken } = await import('${{ github.workspace }}/.github/octokit/index.js')
# const token = await getAccessToken()
# return token
# - name: Trigger all SDK workflow
# uses: codex-/return-dispatch@v2
# id: return_dispatch
# with:
# token: ${{ steps.get_access_token.outputs.result }}
# repo: xeroapi-sdk-codegen
# owner: xero-internal
# workflow: pr.yml
# ref: refs/heads/master
# workflow_inputs: '{"branch_name": "${{github.head_ref}}" }'
# - name: Checking SDK health status
# uses: Codex-/[email protected]
# with:
# token: ${{ steps.get_access_token.outputs.result }}
# repo: xeroapi-sdk-codegen
# owner: xero-internal
# run_id: ${{ steps.return_dispatch.outputs.run_id }}