From 1a3144cb166750aa130bcb6f57ec1e3311ddb8ed Mon Sep 17 00:00:00 2001 From: Granit Dula Date: Tue, 9 May 2023 15:59:11 +0100 Subject: [PATCH 1/3] chore(workflow): check title length if not dependabot --- .github/workflows/pr-checks.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 8e828e8..87b5a93 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -10,6 +10,7 @@ on: jobs: check-title: + if: ${{ github.event.pull_request.user.login != 'dependabot' }} name: Check title runs-on: ubuntu-20.04 From aa7f3e507d481cdec9a41efbefcad8907e196857 Mon Sep 17 00:00:00 2001 From: Granit Dula Date: Tue, 9 May 2023 16:10:30 +0100 Subject: [PATCH 2/3] test change on my user --- .github/workflows/pr-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 87b5a93..fac4d1c 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -10,7 +10,7 @@ on: jobs: check-title: - if: ${{ github.event.pull_request.user.login != 'dependabot' }} + if: ${{ github.event.pull_request.user.login != 'granitdula' }} name: Check title runs-on: ubuntu-20.04 From 412ee2451e35f1d1a3523acd44853c108a0424dc Mon Sep 17 00:00:00 2001 From: Granit Dula Date: Tue, 9 May 2023 16:16:24 +0100 Subject: [PATCH 3/3] revert: added back check for dependabot --- .github/workflows/pr-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index fac4d1c..27156c7 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -10,7 +10,7 @@ on: jobs: check-title: - if: ${{ github.event.pull_request.user.login != 'granitdula' }} + if: ${{ github.event.pull_request.user.login != 'dependabot[bot]' }} name: Check title runs-on: ubuntu-20.04