Skip to content

fix(request): split charge response errors by failure layer #759

fix(request): split charge response errors by failure layer

fix(request): split charge response errors by failure layer #759

Workflow file for this run

name: Changelog
on:
pull_request:
types: [opened, synchronize]
concurrency: ${{ github.workflow }}-${{ github.ref }}
permissions:
contents: read
pull-requests: write
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
fetch-depth: 0
persist-credentials: false
- name: Run changelog action (same-repo PRs)
if: github.event.pull_request.head.repo.full_name == github.repository
uses: tempoxyz/changelogs/check@57e22cb5bd8367edc8cc1450b9eb0aea75d6e019 # changelogs@0.6.3 + unified PR title + install from source
- name: Verify changelog entry exists
if: github.event.pull_request.head.repo.full_name != github.repository
env:
BASE_REF: ${{ github.base_ref }}
run: |
CHANGELOGS=$(git diff --name-only "origin/${BASE_REF}...HEAD" -- '.changelog/*.md' | grep -v config.toml || true)
if [ -z "$CHANGELOGS" ]; then
echo "::error::A changelog entry is required for this PR. Add a .changelog/*.md file."
exit 1
fi