fix: delete should remove all comments with pattern (not only one) #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: pull_request | |
jobs: | |
A: | |
name: repro 247 A | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Comment PR with message | |
uses: ./ | |
with: | |
message: Hello | |
comment_tag: foo | |
B: | |
name: repro 247 B | |
runs-on: ubuntu-latest | |
needs: [A] | |
permissions: | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Comment PR with message | |
uses: ./ | |
with: | |
message: Hello again | |
comment_tag: foo | |
mode: delete |