Skip to content

build(deps): bump certifi from 2025.6.15 to 2025.10.5 #85

build(deps): bump certifi from 2025.6.15 to 2025.10.5

build(deps): bump certifi from 2025.6.15 to 2025.10.5 #85

Workflow file for this run

name: PR Comment Workflow
on:
workflow_dispatch:
pull_request_target:
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: `|What|Link|\n|:---:|---|\n|🕵️‍♂️ Review|[Files changed](https://github.com/${context.repo.owner}/${context.repo.repo}/pull/${context.issue.number}/files)|\n|🌐 Deploy|[Preview #${context.issue.number}](https://${context.issue.number}.md.monerodevs.org)|`
})