Resurrect Benjamin's fix: Add missing properties to metrics from abstract class Metric #776
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
| on: [pull_request] | |
| name: Changelog Reminder | |
| permissions: {} # deny-all default; each job opts in explicitly | |
| jobs: | |
| remind: | |
| name: Changelog Reminder | |
| runs-on: ubuntu-latest | |
| permissions: | |
| pull-requests: write # required: list PR files and post/remove a PR comment | |
| steps: | |
| - name: Changelog Reminder | |
| uses: peterjgrainger/action-changelog-reminder@de92130a79d81c60dbb7f1ff64244646d138a645 # v1.3.0 | |
| with: | |
| changelog_regex: 'CHANGELOG\.md' | |
| customPrMessage: 'Thanks for opening this pull request! Each pull request require an update in the CHANGELOG. Please update it based on your changes.' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |