Backport of [Do not merge] Remove the beta notice on all ephemeral values into v1.10 #2588
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: Merged Pull Request | |
| permissions: | |
| pull-requests: write | |
| # only trigger on pull request closed events | |
| on: | |
| pull_request_target: | |
| types: [ closed ] | |
| jobs: | |
| merge_job: | |
| # this job will only run if the PR has been merged | |
| if: github.event.pull_request.merged == true | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 | |
| with: | |
| script: | | |
| github.rest.issues.createComment({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| body: "Reminder for the merging maintainer: if this is a user-visible change, please update the changelog on the appropriate release branch." | |
| }) |