From 6757cecf52e8b4cd75e6ba62a04f6ab8ffda2fd9 Mon Sep 17 00:00:00 2001 From: Xavier Pich <10544080+xavigpich@users.noreply.github.com> Date: Mon, 22 Jan 2024 11:26:29 +0100 Subject: [PATCH] Add a GHA that checks all new PRs have a reference to a JIRA ticket --- .github/workflows/check-pr-title.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .github/workflows/check-pr-title.yml diff --git a/.github/workflows/check-pr-title.yml b/.github/workflows/check-pr-title.yml new file mode 100644 index 0000000..6bd5924 --- /dev/null +++ b/.github/workflows/check-pr-title.yml @@ -0,0 +1,9 @@ +name: GitHub Actions - Check PR Title +on: + pull_request: + types: [opened, reopened, edited, synchronize] +jobs: + Jira-PR-Title: + if: ${{ (github.actor != 'dependabot[bot]') && (github.actor != 'EburyCrowdin') }} + uses: Ebury/github-tools/.github/workflows/check-pr-title-reusable-workflow.yml@master +