BUG: amos/amos.h: fix loop upper bound in buni
#28
Workflow file for this run
This file contains hidden or 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: "Label PR on Close" | |
| on: | |
| pull_request_target: | |
| types: [closed] | |
| permissions: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| label_pull_request: | |
| name: "Label PR on Close" | |
| # Permissions needed for labelling Pull Requests automatically | |
| # https://docs.github.com/en/actions/security-guides/automatic-token-authentication | |
| permissions: | |
| contents: read | |
| pull-requests: write # needed to apply label | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: github/issue-labeler@c1b0f9f52a63158c4adc09425e858e87b32e9685 # v3.4 | |
| if: > | |
| github.repository == 'scipy/xsf' | |
| && github.event.pull_request.merged == true | |
| with: | |
| configuration-path: .github/label-title-on-close.yml | |
| include-title: 1 | |
| include-body: 0 | |
| enable-versioned-regex: 0 | |
| repo-token: ${{ secrets.GITHUB_TOKEN }} |