From cd0796fdcccd9b13f5fd65d87f9c4dfc0b3b799a Mon Sep 17 00:00:00 2001 From: Vinayak Kulkarni <19776877+vinayakkulkarni@users.noreply.github.com> Date: Tue, 5 Jul 2022 18:20:37 +0530 Subject: [PATCH] fix: clean up workflows --- .github/semantic.yml | 5 ----- .github/workflows/sign-commit.yml | 17 ----------------- 2 files changed, 22 deletions(-) delete mode 100644 .github/semantic.yml delete mode 100644 .github/workflows/sign-commit.yml diff --git a/.github/semantic.yml b/.github/semantic.yml deleted file mode 100644 index 40b69276..00000000 --- a/.github/semantic.yml +++ /dev/null @@ -1,5 +0,0 @@ -# Always validate the PR title AND all the commits -titleAndCommits: true -# Allows use of Merge commits (eg on github: "Merge branch 'master' into feature/ride-unicorns") -# this is only relevant when using commitsOnly: true (or titleAndCommits: true) -allowMergeCommits: true diff --git a/.github/workflows/sign-commit.yml b/.github/workflows/sign-commit.yml deleted file mode 100644 index 8cb0cb2d..00000000 --- a/.github/workflows/sign-commit.yml +++ /dev/null @@ -1,17 +0,0 @@ -name: 'Find signed commits' - -on: - pull_request_target: - -jobs: - check-sign-off: - if: startsWith(github.head_ref, 'releases/v') == false - name: Write comment if unsigned commits found - env: - FORCE_COLOR: 1 - runs-on: ubuntu-latest - - steps: - - uses: live627/check-pr-signoff-action@v1 - with: - token: ${{ secrets.GITHUB_TOKEN }}