Skip to content

chore(deps): Bump actions/setup-python from 6.0.0 to 6.1.0 #757

chore(deps): Bump actions/setup-python from 6.0.0 to 6.1.0

chore(deps): Bump actions/setup-python from 6.0.0 to 6.1.0 #757

Workflow file for this run

name: Check news file
on:
pull_request:
types: [labeled, unlabeled, opened, reopened, synchronize]
permissions: {}
jobs:
check-news-entry:
name: news entry
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
# `towncrier check` runs `git diff --name-only origin/main...`, which
# needs a non-shallow clone.
fetch-depth: 0
- name: Check news entry
if: "!contains(github.event.pull_request.labels.*.name, 'skip news')"
run: |
pipx run towncrier check --compare-with "origin/${BASE_REF}"
env:
BASE_REF: ${{ github.base_ref }}