From d6cc8f067474759d38e6d24e272027b4c88bc0a9 Mon Sep 17 00:00:00 2001 From: Nikola Irinchev Date: Thu, 2 Jan 2025 18:12:34 +0100 Subject: [PATCH] remove check title workflow (#54) --- .github/sync.yml | 4 ---- .../.github/workflows/check-pr-title.yml | 22 ------------------- 2 files changed, 26 deletions(-) delete mode 100644 synced-files/.github/workflows/check-pr-title.yml diff --git a/.github/sync.yml b/.github/sync.yml index 767245e..ac83896 100644 --- a/.github/sync.yml +++ b/.github/sync.yml @@ -26,8 +26,6 @@ group: dest: .github/advanced-issue-labeler.yml - source: synced-files/.github/workflows/issue-labeler.yml dest: .github/workflows/issue-labeler.yml - - source: synced-files/.github/workflows/check-pr-title.yml - dest: .github/workflows/check-pr-title.yml - source: synced-files/.github/workflows/lock-threads.yml dest: .github/workflows/lock-threads.yml repos: | @@ -53,8 +51,6 @@ group: dest: .github/workflows/auto-assign.yml - source: synced-files/.github/auto_assign.yml dest: .github/auto_assign.yml - - source: synced-files/.github/workflows/check-pr-title.yml - dest: .github/workflows/check-pr-title.yml - source: synced-files/.github/workflows/lock-threads.yml dest: .github/workflows/lock-threads.yml repos: | diff --git a/synced-files/.github/workflows/check-pr-title.yml b/synced-files/.github/workflows/check-pr-title.yml deleted file mode 100644 index 1842f5b..0000000 --- a/synced-files/.github/workflows/check-pr-title.yml +++ /dev/null @@ -1,22 +0,0 @@ -# NOTE: This is a common file that is overwritten by realm/ci-actions sync service -# and should only be modified in that repository. - -name: "Check PR Title" -on: - pull_request: - types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled, converted_to_draft, edited] - -jobs: - check-pr-title: - name: Check PR Title - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - with: - submodules: false - - name: Enforce PR title - uses: realm/ci-actions/title-checker@main - with: - regex: R[A-Z]{2,6}-[0-9]{1,6} - error-hint: Invalid PR title. Make sure it's prefixed with the JIRA ticket the PR addresses or add the no-jira-ticket label. - ignore-labels: 'no-jira-ticket' \ No newline at end of file