Enumerations should reflect the correct casing used in xsd. #90
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: Changelog | |
| on: | |
| pull_request: | |
| types: [closed] | |
| release: | |
| types: [published] | |
| issues: | |
| types: [closed, edited] | |
| jobs: | |
| generate_changelog: | |
| runs-on: ubuntu-latest | |
| name: Generate changelog | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Generate changelog | |
| uses: charmixer/[email protected] | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Commit files | |
| run: | | |
| git config --local user.email "[email protected]" | |
| git config --local user.name "GitHub Action" | |
| git add CHANGELOG.md && git commit -m 'Updated CHANGELOG.md' | |
| - name: Push changes | |
| uses: ad-m/[email protected] | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| branch: 'refs/heads/master' | |
| tags: false |