HibernateCriterionAdapter: push methods from AbstractHibernateCriterionAdapter down #443
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: Grace Changelog | |
| on: | |
| issues: | |
| types: [closed,reopened] | |
| push: | |
| branches: | |
| - 2024.2.x | |
| workflow_dispatch: | |
| jobs: | |
| release_notes: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Check if it has release drafter config file | |
| id: check_release_drafter | |
| run: | | |
| has_release_drafter=$([ -f .github/release-drafter.yml ] && echo "true" || echo "false") | |
| echo "{has_release_drafter}={has_release_drafter}" >> $GITHUB_OUTPUT | |
| - name: Extract branch name | |
| id: extract_branch | |
| run: echo "{name}={GITHUB_REF:11}" >> $GITHUB_OUTPUT | |
| # If it has release drafter: | |
| - uses: release-drafter/release-drafter@v7 | |
| if: steps.check_release_drafter.outputs.has_release_drafter == 'true' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| with: | |
| commitish: ${{ steps.extract_branch.outputs.value }} |