Merge pull request #228 from dermatologist/copilot/improve-slow-code-… #19
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@v5 | |
| - name: "✏️ Generate release changelog" | |
| uses: janheinrichmerker/action-github-changelog-generator@v2.4 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| user: dermatologist | |
| maxIssues: 15 | |
| httpCache: true | |
| - name: Commit changes | |
| uses: EndBug/add-and-commit@v9 | |
| with: | |
| default_author: github_actions | |
| add: '*.md' |