From afdb5680fad844b67473d9ce9e8ee9421be4446a Mon Sep 17 00:00:00 2001 From: EduardGomezEscandell Date: Mon, 9 Oct 2023 11:45:55 +0200 Subject: [PATCH] Use desktop engineering's PR title validation --- .github/workflows/validate-pr-title.yaml | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .github/workflows/validate-pr-title.yaml diff --git a/.github/workflows/validate-pr-title.yaml b/.github/workflows/validate-pr-title.yaml new file mode 100644 index 000000000..52c5aadad --- /dev/null +++ b/.github/workflows/validate-pr-title.yaml @@ -0,0 +1,13 @@ +name: Validate pull request title + +on: + pull_request: + types: [opened, edited] + +jobs: + validate: + name: Validate PR title + runs-on: ubuntu-latest + steps: + - name: Validate PR title + uses: canonical/desktop-engineering/gh-actions/common/validate-pr-title@main \ No newline at end of file