Skip to content

Fix specs failing after Money 6.18.0 release #539

Fix specs failing after Money 6.18.0 release

Fix specs failing after Money 6.18.0 release #539

name: "Ensure Changelog label"
on:
pull_request:
types: ["labeled", "unlabeled"]
branches:
- main
- v*
workflow_call:
jobs:
ensure:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: "Check for the presence of a changelog label"
env:
GH_TOKEN: ${{ github.token }}
run: |
gh pr view \
${{ github.event.pull_request.number }} \
--json labels \
--jq 'any(.labels[].name; startswith("changelog:"))' \
| jq -e