Skip to content

TESTING

TESTING #79

Workflow file for this run

---
name: PR - Commit Parity
'on':
pull_request:
branches:
- main
- dev
- petermetz/**
push:
branches:
- main
- dev
jobs:
pr-commit-parity:
name: PR and Commit messages Parity
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
- name: Execute script
id: execute-script
env:
GITHUB_REPO: ${{ github.repository }}
PULL_REQ_URL: ${{ github.event.pull_request.url }}
PULL_REQ_TITLE: ${{ github.event.pull_request.title }}
PULL_REQ_BODY: ${{ github.event.pull_request.body }}
run: |
PR_COMMIT_PARITY_OUTPUT=$(./tools/pr-commit-parity.sh "$GITHUB_REPO" "$PULL_REQ_URL" "$PULL_REQ_TITLE" "$PULL_REQ_BODY")
echo "PR_COMMIT_PARITY_OUTPUT=$PR_COMMIT_PARITY_OUTPUT" >> "$GITHUB_OUTPUT"
- name: List output
run: echo "The output is ${{ steps.execute-script.outputs.PR_COMMIT_PARITY_OUTPUT }}"