This repository was archived by the owner on Dec 12, 2025. It is now read-only.
Update release docs #562
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
| name: Link Github Releases | |
| on: | |
| pull_request: | |
| types: [closed] | |
| jobs: | |
| comment: | |
| # only link releases on release PRs | |
| if: startsWith(github.event.pull_request.title, 'Release MongoDB Kubernetes Operator') | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/github-script@v3 | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| script: | | |
| github.issues.createComment({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| body: 'Review and publish the release here: https://github.com/mongodb/mongodb-kubernetes-operator/releases' | |
| }) |