Skip to content

Fix h2 stream close #1280

Fix h2 stream close

Fix h2 stream close #1280

Workflow file for this run

name: Check
on:
pull_request:
types: [labeled, unlabeled, opened, reopened, synchronize]
permissions:
contents: read
jobs:
check-changelog-entry:
name: changelog entry
runs-on: ubuntu-latest
steps:
- name: "Checkout repository"
uses: "actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0"
with:
# `towncrier check` runs `git diff --name-only origin/main...`, which
# needs a non-shallow clone.
fetch-depth: 0
persist-credentials: false
- name: "Check changelog"
if: "!contains(github.event.pull_request.labels.*.name, 'Skip Changelog')"
env:
BASE_REF: ${{ github.base_ref }}
run: |
if ! pipx run towncrier check --compare-with "origin/$BASE_REF"; then
echo "Please see https://github.com/urllib3/urllib3/blob/main/changelog/README.rst for guidance."
false
fi