From 32dc582ca964b35f203c87af4ad14469b93e5709 Mon Sep 17 00:00:00 2001 From: antoine lebaud Date: Thu, 11 Jul 2024 20:30:48 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5(ci)=20remove=20CI=20steps=20relate?= =?UTF-8?q?d=20to=20ChangeLog?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ChangeLog won't be any useful before the first release. Save us time, save the world useless computation, remove the CI steps. They'll be added back as soon as they are necessary. --- .github/workflows/meet.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/meet.yml b/.github/workflows/meet.yml index 0c2a9443..25942428 100644 --- a/.github/workflows/meet.yml +++ b/.github/workflows/meet.yml @@ -30,32 +30,6 @@ jobs: - name: Lint commit messages added to main run: ~/.local/bin/gitlint --commits origin/${{ github.event.pull_request.base.ref }}..HEAD - check-changelog: - runs-on: ubuntu-latest - if: | - contains(github.event.pull_request.labels.*.name, 'noChangeLog') == false && - github.event_name == 'pull_request' - steps: - - name: Checkout repository - uses: actions/checkout@v3 - with: - fetch-depth: 50 - - name: Check that the CHANGELOG has been modified in the current branch - run: git diff --name-only ${{ github.event.pull_request.base.sha }} ${{ github.event.after }} | grep 'CHANGELOG.md' - - lint-changelog: - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - name: Check CHANGELOG max line length - run: | - max_line_length=$(cat CHANGELOG.md | grep -Ev "^\[.*\]: https://github.com" | wc -L) - if [ $max_line_length -ge 80 ]; then - echo "ERROR: CHANGELOG has lines longer than 80 characters." - exit 1 - fi - build-mails: runs-on: ubuntu-latest defaults: