newsfile.yml (459B)
1 name: Newsfile 2 3 on: 4 pull_request: 5 branches: [ main ] 6 merge_group: 7 8 jobs: 9 changelog: 10 runs-on: ubuntu-latest 11 steps: 12 - uses: actions/checkout@v3 13 with: # Needed for comparison 14 fetch-depth: 0 15 - uses: actions/setup-python@v1 16 with: 17 python-version: '3.9' 18 - run: pip install towncrier==21.9.0 19 - name: ":newspaper: Newsfile" 20 run: python3 -m towncrier.check --compare-with=origin/main