瀏覽代碼

Merge pull request #1510 from zerotier/nolint

removing commit linter
Sean OMeara 3 年之前
父節點
當前提交
30c77cfee5
共有 1 個文件被更改,包括 0 次插入17 次删除
  1. 0 17
      .github/workflows/badstrings.yml

+ 0 - 17
.github/workflows/badstrings.yml

@@ -1,17 +0,0 @@
-name: badstrings
-on: [pull_request, push]
-jobs:
-  badstrings:
-    runs-on: ubuntu-latest
-    steps:
-      - name: scanning commit message for bad strings
-        run: |
-          #!/bin/bash
-          set -euo pipefail
-          IFS=$'\n\t'
-          message="${{ github.event.head_commit.message }}"
-          
-          strings=($(curl -s https://raw.githubusercontent.com/someara/badstrings/main/strings.txt))
-          for i in ${strings[@]} ; do
-            echo "${message}" | grep -v "$i" &>/dev/null;
-          done