Skip to content

chore(deps): bump the all-actions group across 1 directory with 10 updates #1732

chore(deps): bump the all-actions group across 1 directory with 10 updates

chore(deps): bump the all-actions group across 1 directory with 10 updates #1732

# SPDX-License-Identifier: Apache-2.0
name: "PR Formatting"
on:
pull_request_target:
types:
- assigned
- unassigned
- labeled
- unlabeled
- opened
- reopened
- edited
- converted_to_draft
- ready_for_review
- review_requested
- review_request_removed
- locked
- unlocked
- synchronize
defaults:
run:
shell: bash
permissions:
statuses: write
jobs:
title-check:
name: Title Check
runs-on: hl-crypto-lin-md
steps:
- name: Harden Runner
uses: step-security/harden-runner@ab7a9404c0f3da075243ca237b5fac12c98deaa5 # v2.19.3
with:
egress-policy: audit
- name: Check PR Title
uses: step-security/action-semantic-pull-request@75d2dd5deafa3e9fccc1626ecd58d076ed1d2c79 # v6.1.2
env:
GITHUB_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
assignee-check:
name: Assignee Check
runs-on: hl-crypto-lin-md
steps:
- name: Harden Runner
uses: step-security/harden-runner@ab7a9404c0f3da075243ca237b5fac12c98deaa5 # v2.19.3
with:
egress-policy: audit
- name: Check Assignee
if: ${{ github.event.pull_request.assignees == null || github.event.pull_request.assignees[0] == null }}
run: |
echo "Assignee is not set. Failing the workflow."
exit 1