This repository was archived by the owner on Oct 13, 2025. It is now read-only.
fix: update URL in read_covid_narratives method to correct endpoint #7
Workflow file for this run
This file contains hidden or 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: Generate changelog | |
| on: | |
| push: | |
| branches: | |
| - "release/**" | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout Latest Commit | |
| uses: actions/checkout@v4 | |
| - name: Generate changelog | |
| uses: charmixer/auto-changelog-action@v1 | |
| with: | |
| token: ${{ secrets.github_token }} | |
| - name: Commit changes | |
| uses: EndBug/add-and-commit@v7 | |
| with: | |
| default_author: github_actions | |
| add: '*.md' |