Remove old feed metrics and add a new one to track recently failing feeds. #1709
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: Newsfile | |
on: | |
pull_request: | |
branches: [ main ] | |
merge_group: | |
jobs: | |
changelog: | |
runs-on: ubuntu-latest | |
# No newsfile required for dependabot | |
if: ${{ github.actor != 'dependabot[bot]' }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: # Needed for comparison | |
fetch-depth: 0 | |
- uses: actions/setup-python@v1 | |
with: | |
python-version: '3.9' | |
- run: pip install towncrier==21.9.0 | |
- name: ":newspaper: Newsfile" | |
run: python3 -m towncrier.check --compare-with=origin/main |