From 24327beae7b58860265e0f3cac7e330ce933e401 Mon Sep 17 00:00:00 2001 From: Marvin Beckers Date: Tue, 8 Apr 2025 11:18:11 +0200 Subject: [PATCH] Remove emojis from PR template and verification On-behalf-of: SAP Signed-off-by: Marvin Beckers --- .github/pull_request_template.md | 32 ++++++++++++++++++++---------- .github/workflows/pr-verifier.yaml | 23 --------------------- 2 files changed, 21 insertions(+), 34 deletions(-) delete mode 100644 .github/workflows/pr-verifier.yaml diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index d6ac1ab..d1d1441 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,22 +1,32 @@ + +## Summary + +## What Type of PR Is This? + + -## Summary -## Related issue(s) +## Related Issue(s) Fixes # diff --git a/.github/workflows/pr-verifier.yaml b/.github/workflows/pr-verifier.yaml deleted file mode 100644 index ac40e2c..0000000 --- a/.github/workflows/pr-verifier.yaml +++ /dev/null @@ -1,23 +0,0 @@ -name: PR Verifier - -on: - # NB: using `pull_request_target` runs this in the context of - # the base repository, so it has permission to upload to the checks API. - # This means changes won't kick in to this file until merged onto the - # main branch. - pull_request_target: - types: [opened, edited, reopened, synchronize] - -jobs: - verify: - name: verify PR contents - permissions: - checks: write - pull-requests: read - runs-on: ubuntu-latest - steps: - - name: Verifier action - id: verifier - uses: kubernetes-sigs/kubebuilder-release-tools@v0.4.3 - with: - github_token: ${{ secrets.GITHUB_TOKEN }}