Skip to content

Fix: removeSignature docstring style in Transaction.h #2803

Fix: removeSignature docstring style in Transaction.h

Fix: removeSignature docstring style in Transaction.h #2803

name: PR Checks
on:
workflow_dispatch:
pull_request:
types:
- opened
- reopened
- synchronize
- closed
defaults:
run:
shell: bash
concurrency:
group: pr-checks-${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
permissions:
contents: read
jobs:
build:
name: Code
# Skip the full build when a PR is closed without being merged.
if: github.event.action != 'closed' || github.event.pull_request.merged == true
uses: ./.github/workflows/zxc-build-library.yaml
check-links:
# Link checking is only useful while the PR is open.
if: github.event.action != 'closed'
runs-on: hiero-client-sdk-linux-large
steps:
- name: Harden the runner (Audit all outbound calls)
uses: step-security/harden-runner@58077d3c7e43986b6b15fba718e8ea69e387dfcc # v2.15.1
with:
egress-policy: audit
- name: Checkout Code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Check Markdown links
uses: gaurav-nelson/github-action-markdown-link-check@5c5dfc0ac2e225883c0e5f03a85311ec2830d368 # v1
with:
check-modified-files-only: 'yes'
config-file: '.mlc_config.json'
use-quiet-mode: 'yes'
base-branch: 'main'