Skip to content

Support context manager usage of clients and apps to implicitly close token storage and transports #1932

Support context manager usage of clients and apps to implicitly close token storage and transports

Support context manager usage of clients and apps to implicitly close token storage and transports #1932

Workflow file for this run

name: changelog
on:
workflow_call:
pull_request:
types:
- labeled
- unlabeled
- opened
- reopened
- synchronize
jobs:
check_has_news_in_changelog_dir:
if: |
! (
contains(github.event.pull_request.labels.*.name, 'no-news-is-good-news') ||
github.event.pull_request.user.login == 'pre-commit-ci[bot]' ||
github.event.pull_request.user.login == 'dependabot[bot]'
)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with: # do a deep fetch to allow merge-base and diff
fetch-depth: 0
- name: check PR adds a news file
run: |
news_files="$(git diff --name-only "$(git merge-base origin/main "$GITHUB_SHA")" "$GITHUB_SHA" -- changelog.d/*.rst)"
if [ -n "$news_files" ]; then
echo "Saw new files. changelog.d:"
echo "$news_files"
else
echo "No news files seen"
exit 1
fi