From d15045b38beea3a4c1923b11a26f4c0f9a666ecc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?T=C3=A9rence=20Hollander?= Date: Sun, 6 Aug 2023 10:23:40 +0200 Subject: [PATCH] repro 247 --- .github/workflows/repro-247.yaml | 34 ++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 .github/workflows/repro-247.yaml diff --git a/.github/workflows/repro-247.yaml b/.github/workflows/repro-247.yaml new file mode 100644 index 00000000..c692a719 --- /dev/null +++ b/.github/workflows/repro-247.yaml @@ -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 \ No newline at end of file