Add CI run running on oldest supported versions of core dependencies #1995
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Changelog | |
on: | |
pull_request: | |
# should also be re-run when changing labels | |
types: [opened, reopened, labeled, unlabeled, synchronize] | |
env: | |
FRAGMENT_NAME: "docs/changes/${{ github.event.number }}.*.rst" | |
jobs: | |
changelog: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Check for news fragment | |
if: ${{ ! contains( github.event.pull_request.labels.*.name, 'no-changelog-needed')}} | |
uses: andstor/file-existence-action@v3 | |
with: | |
files: ${{ env.FRAGMENT_NAME }} | |
fail: true |