Merge pull request #107 from plowsof/comment

ci: comment coolify url on each PR
This commit is contained in:
nahuhh 2024-12-15 18:41:09 +00:00 committed by GitHub
commit c1bdcfbe2d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

19
.github/workflows/comment_pr.yml vendored Normal file
View file

@ -0,0 +1,19 @@
name: PR Comment Workflow
on:
pull_request:
types: [opened]
jobs:
comment-on-pr:
runs-on: ubuntu-latest
steps:
- name: Comment coolify preview URL.
uses: actions/github-script@v6
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `https://${context.issue.number}.md.monerodevs.org/`
})