[additive_functionals] Add more discussions on the peculiar property #96
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: Style Guide Comment Trigger | |
| on: | |
| issues: | |
| types: [opened, edited] | |
| issue_comment: | |
| types: [created] | |
| jobs: | |
| check-trigger: | |
| if: contains(github.event.comment.body, '@qe-style-checker') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: QuantEcon/action-style-guide@v0.5 | |
| with: | |
| mode: 'single' | |
| lectures-path: 'lectures/' | |
| anthropic-api-key: ${{ secrets.ANTHROPIC_API_KEY }} | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| comment-body: ${{ github.event.comment.body || github.event.issue.body }} |