Skip to content

Rc comment with package links #14

Rc comment with package links

Rc comment with package links #14

name: Comment on Push better
on:
pull_request:
types: [opened, synchronize]
jobs:
comment:
runs-on: ubuntu-latest
steps:
- name: Leave PR comment
uses: actions/github-script@v7
env:
AVAR: '789'
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: "Here is the link ${{ env.AVAR }} to your Ruby Gem: ${{env.RUBY_GEM_VERSION}}"
})