From 865ceca5f9bb2f7c8d24e6b52c195e35ad7b408c Mon Sep 17 00:00:00 2001 From: Xavier Pich <10544080+xavigpich@users.noreply.github.com> Date: Thu, 18 Jan 2024 17:02:03 +0100 Subject: [PATCH] Add a GHA that checks all new PRs have a reference to a JIRA ticket --- .github/workflows/check-pr-title.yml | 8 ++++++++ 1 file changed, 8 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..9416172 --- /dev/null +++ b/.github/workflows/check-pr-title.yml @@ -0,0 +1,8 @@ +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 \ No newline at end of file