Skip to content

Commit

Permalink
repro 247
Browse files Browse the repository at this point in the history
  • Loading branch information
thollander committed Aug 6, 2023
1 parent 2af827f commit d15045b
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/repro-247.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
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

0 comments on commit d15045b

Please sign in to comment.