From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 1643) id DFF7E3858404; Tue, 7 Feb 2023 17:56:46 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org DFF7E3858404 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gcc.gnu.org; s=default; t=1675792606; bh=ku5bnvyt6D8fk8U/W3EFles/bfLQYZ6eMacVvoqkT2k=; h=From:To:Subject:Date:From; b=sh9IgCejFwYDklKRQIghnCBaTwz9BrySlc6FOUq3akWeigqyXPoMPgFOA1vcrJXbX 6RNi9MXiKMRPvau9GM0KhDUvNmIqROdK7BqhlFk5tOEc2hLMhoh0lp4uzpfbLzLYEV 1knwBis6D+XW4j4z8QXwHiCvprg9sCFAS7ZUQ4TQ= Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Thomas Schwinge To: gcc-cvs@gcc.gnu.org Subject: [gcc/devel/rust/master] ci: Require commits check to pass for bors to merge and fix CI names X-Act-Checkin: gcc X-Git-Author: Arthur Cohen X-Git-Refname: refs/heads/devel/rust/master X-Git-Oldrev: 8f1fce4916520b7ee9a97d2bb4f25d25fd94a626 X-Git-Newrev: 7f66312db45e3e157123108934f6cf0c71a1c235 Message-Id: <20230207175646.DFF7E3858404@sourceware.org> Date: Tue, 7 Feb 2023 17:56:46 +0000 (GMT) List-Id: https://gcc.gnu.org/g:7f66312db45e3e157123108934f6cf0c71a1c235 commit 7f66312db45e3e157123108934f6cf0c71a1c235 Author: Arthur Cohen Date: Wed Feb 1 19:11:32 2023 +0100 ci: Require commits check to pass for bors to merge and fix CI names ChangeLog: * .github/bors.toml: Add commit checkers. * .github/workflows/commit-format.yml: Rename commit checker jobs. Diff: --- .github/bors.toml | 5 ++++- .github/workflows/commit-format.yml | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/bors.toml b/.github/bors.toml index 921cf6502ce..8c4607e3007 100644 --- a/.github/bors.toml +++ b/.github/bors.toml @@ -1,7 +1,10 @@ status = [ "build-and-check-ubuntu-64bit", "build-and-check-ubuntu-32bit", - "build-and-check-gcc-48" + "build-and-check-gcc-48", + "check-commit-changelogs", + "check-commit-prefixes", + "check-commit-signoffs", ] # Uncomment this to use a two hour timeout. # The default is one hour. diff --git a/.github/workflows/commit-format.yml b/.github/workflows/commit-format.yml index 66d0e19bf75..2e551fd1b00 100644 --- a/.github/workflows/commit-format.yml +++ b/.github/workflows/commit-format.yml @@ -7,7 +7,7 @@ on: - gcc-patch-dev jobs: - check_commit_changelogs: + check-commit-changelogs: runs-on: ubuntu-latest name: check-changelogs @@ -28,7 +28,7 @@ jobs: run: | python3 contrib/gcc-changelog/git_check_commit.py origin/${{ github.event.pull_request.base.ref }}..${{ github.event.pull_request.head.sha }} - check_commit_prefixes: + check-commit-prefixes: runs-on: ubuntu-latest name: check-gccrs-prefix @@ -54,7 +54,7 @@ jobs: done exit $retval - check_commit_signoff: + check-commit-signoff: runs-on: ubuntu-latest name: check-commit-signoff