We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3765220 commit a21aa34Copy full SHA for a21aa34
.github/workflows/lint.yml
@@ -20,8 +20,13 @@ jobs:
20
bundler-cache: true
21
22
- name: Run linters
23
+ if: ${{ github.event_name != 'merge_group' }}
24
uses: wearerequired/lint-action@v2
25
with:
26
auto_fix: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.owner.login == github.repository_owner }}
27
rubocop: true
28
rubocop_command_prefix: bundle exec
29
+
30
+ - name: Skip with successful status
31
+ if: ${{ github.event_name == 'merge_group' }}
32
+ run: exit 0
0 commit comments