From d04794971960d34a08bfceb85fed6d6b90495eec Mon Sep 17 00:00:00 2001 From: mohamedAdhamc Date: Mon, 21 Oct 2024 18:49:36 +0300 Subject: [PATCH] add other workflow --- .github/workflows/show-pr-change-note.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/show-pr-change-note.yml diff --git a/.github/workflows/show-pr-change-note.yml b/.github/workflows/show-pr-change-note.yml new file mode 100644 index 00000000000..d28a9cba9b4 --- /dev/null +++ b/.github/workflows/show-pr-change-note.yml @@ -0,0 +1,20 @@ +name: Show Pull Request Change Note + +on: + pull_request: + types: [opened, edited] + +jobs: + show-pull-request-change-note: + name: Show Pull Request Change Note + runs-on: ubuntu-latest + steps: + - name: Use The Release Notes Manager Action + uses: Ahmed-Khaled-dev/release-notes-manager@v1 + env: + # secrets.GITHUB_TOKEN is automatically generated by GitHub for each workflow run + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + action-type: pr + pull-request-number: ${{ github.event.pull_request.number }} + pull-request-trigger-event: ${{ github.event.action }}