Skip to content

feat: FeeEstimateQuery #3112

feat: FeeEstimateQuery

feat: FeeEstimateQuery #3112

Workflow file for this run

name: 'PR Formatting'
on:
pull_request_target:
types:
- opened
- reopened
- edited
- synchronize
- assigned
defaults:
run:
shell: bash
permissions:
contents: read
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: hiero-client-sdk-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
with:
egress-policy: audit
- name: Check PR Title
uses: step-security/conventional-pr-title-action@e2a9b8d87a4b25077f0696ec3e2b4dd5a3f43734 # v3.2.4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
assignee-check:
name: Assignee Check
runs-on: hiero-client-sdk-linux-medium
steps:
- name: Harden Runner
uses: step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
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