This is an automated email from the ASF dual-hosted git repository.
adoroszlai pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ratis.git
The following commit(s) were added to refs/heads/master by this push:
new cbd9793a0 RATIS-2070. Skip push build for dependabot (#1077)
cbd9793a0 is described below
commit cbd9793a0e315276d370dbfc5dd6a75ccf67f454
Author: Doroszlai, Attila <[email protected]>
AuthorDate: Sun May 5 08:04:09 2024 +0200
RATIS-2070. Skip push build for dependabot (#1077)
---
.github/workflows/post-commit.yml | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/post-commit.yml
b/.github/workflows/post-commit.yml
index 2d3258ccc..22a6df756 100644
--- a/.github/workflows/post-commit.yml
+++ b/.github/workflows/post-commit.yml
@@ -14,8 +14,12 @@
# limitations under the License.
name: build-branch
on:
- - push
- - pull_request
+ push:
+ branches-ignore:
+ - 'dependabot/**'
+ tags:
+ - '**'
+ pull_request:
env:
WITH_COVERAGE: true
jobs: