Use int minval instead -1 for invalid telescope ids in SubarrayDescription.tel_index_array, improve docstrings #887
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 | |
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@v3 | |
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@v2 | |
with: | |
files: ${{ env.FRAGMENT_NAME }} | |
fail: true |