Skip to content

fix(deps): update dependency @semantic-release/github to v10.0.7 #144

fix(deps): update dependency @semantic-release/github to v10.0.7

fix(deps): update dependency @semantic-release/github to v10.0.7 #144

Workflow file for this run

name: New PR opened
on:
pull_request_target:
types:
- opened
permissions: read-all
jobs:
comment:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Hey @${{ github.event.pull_request.user.login }}! \
\n\n \
👋Thank you for your contribution to the project. Please refer to the [contribution rules](..//blob/main/CONTRIBUTION.md) \
for a quick overview of the process. \
\n\n \
Make sure that this PR clearly explains: \n \
- the problem being solved \n \
- the best way a reviewer and you can test your changes \n \
\n \
With submitting this PR you confirm that you hold the rights of the code added and agree \
that it will published under the [Apache 2.0 license](/blob/main/LICENSE). \
\n\n \
This message was generated automatically. You are welcome to [improve it](/blob/main/.github/workflows/new-pr-opened.yml)._'
})