summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaire <claire.github-309c@sitedethib.com>2023-09-20 12:54:08 +0200
committerGitHub <noreply@github.com>2023-09-20 12:54:08 +0200
commitaf0ee129082bc9c57ec0606dc1899ec13d2dfffb (patch)
treea082989e2af68cde144504420536d5cc624c16cb
parent46bd58f74d11591a0180319285b0c79b2212ef69 (diff)
Disable ruby linting for 4.1.x branch (#26993)
-rw-r--r--.github/workflows/lint-ruby.yml41
1 files changed, 0 insertions, 41 deletions
diff --git a/.github/workflows/lint-ruby.yml b/.github/workflows/lint-ruby.yml
deleted file mode 100644
index b834e3053f1..00000000000
--- a/.github/workflows/lint-ruby.yml
+++ /dev/null
@@ -1,41 +0,0 @@
-name: Ruby Linting
-on:
- push:
- branches-ignore:
- - 'dependabot/**'
- paths:
- - 'Gemfile*'
- - '.rubocop.yml'
- - '**/*.rb'
- - '**/*.rake'
- - '.github/workflows/lint-ruby.yml'
-
- pull_request:
- paths:
- - 'Gemfile*'
- - '.rubocop.yml'
- - '**/*.rb'
- - '**/*.rake'
- - '.github/workflows/lint-ruby.yml'
-
-jobs:
- lint:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout Code
- uses: actions/checkout@v3
- with:
- fetch-depth: 0
-
- - name: Set-up RuboCop Problem Mathcher
- uses: r7kamura/rubocop-problem-matchers-action@v1
-
- - name: Run rubocop
- uses: github/super-linter@v4
- env:
- DEFAULT_BRANCH: main
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- LINTER_RULES_PATH: .
- RUBY_CONFIG_FILE: .rubocop.yml
- VALIDATE_ALL_CODEBASE: false
- VALIDATE_RUBY: true