Add a new APNs configuration option push_with_badge
to suppress sending aps.badge
in APNs messages.
#329
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] | |
jobs: | |
check-newsfile: | |
if: ${{ github.base_ref == 'main' || contains(github.base_ref, 'release-') }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
ref: ${{github.event.pull_request.head.sha}} | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- run: python -m pip install towncrier | |
- run: "scripts-dev/check_newsfragment.sh ${{ github.event.number }}" |