Merge pull request #147 from comet-ml/avinahradau/OPIK-6742-mcp-trans… #9
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: Release Drafter | |
| # Keeps a draft GitHub release continuously updated with the changes merged to | |
| # main (one entry per merged PR). The draft is published/cleaned up by the | |
| # Release workflow's delete-draft step when an actual release is cut. | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write # create/update the draft release | |
| pull-requests: read # read merged PRs for the changelog | |
| jobs: | |
| update_release_draft: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| steps: | |
| - uses: release-drafter/release-drafter@v7 | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |