From 41b5bbe1d515a9a81013ad23649d55354c9ea242 Mon Sep 17 00:00:00 2001 From: mcdequiroz Date: Tue, 30 Sep 2025 10:21:22 +0800 Subject: [PATCH] Create jira-create.yml Trigger when a Pull Request is Merged --- .github/workflows/jira-create.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/jira-create.yml diff --git a/.github/workflows/jira-create.yml b/.github/workflows/jira-create.yml new file mode 100644 index 00000000..f5b2c591 --- /dev/null +++ b/.github/workflows/jira-create.yml @@ -0,0 +1,15 @@ +on: + pull_request: + types: + - closed + +jobs: + run-on-merge: + if: github.event.pull_request.merged == true + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3 + + - name: Run a script or job after PR is merged + run: echo "Pull request #${{ github.event.pull_request.number }} was merged!"