Skip to content

Commit

Permalink
Add dedicated workflow for debug
Browse files Browse the repository at this point in the history
  • Loading branch information
ClementWalter committed Sep 11, 2023
1 parent 5d2f757 commit eb18810
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/pr_comment_debug.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Comment on PR from fork

on: pull_request

permissions:
pull-requests: write

jobs:
compare-snapshot:
permissions: write-all
runs-on: ubuntu-latest

steps:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: "It works"
})

0 comments on commit eb18810

Please sign in to comment.