Reverts PR 1193 (Ignore GwcsBoundingBoxWarning in JWST readers) #45
Workflow file for this run
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 check | |
on: | |
pull_request: | |
types: [labeled, unlabeled, opened, synchronize, reopened] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
changelog: | |
name: Check changelog entry | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check change log entry | |
uses: scientific-python/action-check-changelogfile@0.3 | |
env: | |
CHANGELOG_FILENAME: CHANGES.rst | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CHECK_MILESTONE: false |