Skip to content

test: add unit tests for crypto_utils (Issue #993) #8

test: add unit tests for crypto_utils (Issue #993)

test: add unit tests for crypto_utils (Issue #993) #8

name: 'PR Formatting'
on:
workflow_dispatch:
pull_request_target:
types:
- opened
- reopened
- edited
- synchronize
defaults:
run:
shell: bash
permissions:
contents: read
checks: write
statuses: write
concurrency:
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
title-check:
name: Title Check
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.base.repo.fork }}
permissions:
checks: write
statuses: write
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@df199fb7be9f65074067a9eb93f12bb4c5547cf2 # v2.13.3
with:
egress-policy: audit
- name: Check PR Title
uses: step-security/conventional-pr-title-action@cb1c5657ccf4c42f5c0a6c0708cb8251b960d902 # v3.2.5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}