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