From d045658884b0a366b156da1f3bb7f0bba2f51834 Mon Sep 17 00:00:00 2001 From: Andy Goldstein Date: Wed, 1 Nov 2023 15:37:42 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=B1=20Add=20PR=20template=20with=20ico?= =?UTF-8?q?ns=20&=20verify=20job=20(#205)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add PR template with icons & verify job Signed-off-by: Andy Goldstein --- .github/dependabot.yml | 2 ++ .github/pull_request_template.md | 10 ++++++++++ .github/workflows/pr-title.yaml | 13 +++++++++++++ 3 files changed, 25 insertions(+) create mode 100644 .github/pull_request_template.md create mode 100644 .github/workflows/pr-title.yaml diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 615dfde2..0b9c16d9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -8,3 +8,5 @@ updates: directory: "/" schedule: interval: "daily" + commit-message: + prefix: ":seedling:" diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 00000000..a1e419f9 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,10 @@ + diff --git a/.github/workflows/pr-title.yaml b/.github/workflows/pr-title.yaml new file mode 100644 index 00000000..b6c9f6f1 --- /dev/null +++ b/.github/workflows/pr-title.yaml @@ -0,0 +1,13 @@ +on: + pull_request_target: + types: [opened, edited, reopened, synchronize] + +jobs: + pr-title: + runs-on: ubuntu-latest + name: Verify PR title + steps: + - name: Verify PR title + uses: kubernetes-sigs/kubebuilder-release-tools@v0.4.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }}