mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-25 16:31:10 -06:00
23 lines
662 B
YAML
23 lines
662 B
YAML
name: Pull Request Opened
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
# only trigger on pull request closed events
|
|
on:
|
|
pull_request_target:
|
|
types: [ opened ]
|
|
|
|
jobs:
|
|
pr_open_job:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/github-script@d7906e4ad0b1822421a7e6a35d5ca353c962f410 # v6.4.1
|
|
with:
|
|
script: |
|
|
github.rest.issues.createComment({
|
|
issue_number: context.issue.number,
|
|
owner: context.repo.owner,
|
|
repo: context.repo.repo,
|
|
body: "Reminder for the PR assignee: If this is a user-visible change, please update the changelog as part of the PR."
|
|
})
|