From 8b13ece28212f1c9a480cd525f3e87be59396861 Mon Sep 17 00:00:00 2001 From: ydshieh Date: Wed, 9 Oct 2024 15:05:20 +0200 Subject: [PATCH] fix --- .github/workflows/self-comment-slow-ci.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/self-comment-slow-ci.yml diff --git a/.github/workflows/self-comment-slow-ci.yml b/.github/workflows/self-comment-slow-ci.yml new file mode 100644 index 00000000000000..1f2da50d3098d6 --- /dev/null +++ b/.github/workflows/self-comment-slow-ci.yml @@ -0,0 +1,17 @@ +name: PR comment github action tests + +on: + pull_request_review_comment: + types: [created] + +jobs: + get-pr-number: + runs-on: ubuntu-22.04 + name: Get PR number + steps: + - name: Get PR number + shell: bash + env: + PR_NUMBER: ${{ github.event.pull_request.number }} + run: | + echo "$PR_NUMBER"