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 d87bd3f commit 868a5eeCopy full SHA for 868a5ee
.github/workflows/superlinter.yml
@@ -2,8 +2,9 @@ name: Super-Linter
2
3
on:
4
pull_request:
5
+ branches: ['application-implementation'] # Trigger on PRs to application-implementation branch
6
push:
- branches: ['**']
7
+ branches: ['application-implementation'] # Trigger on pushes to application-implementation branch
8
9
jobs:
10
lint:
@@ -15,7 +16,7 @@ jobs:
15
16
- name: Code Lint
17
uses: github/super-linter/slim@v6
18
env:
- DEFAULT_BRANCH: main
19
+ DEFAULT_BRANCH: application-implementation # Update default branch to application-implementation
20
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
# Optional: turn off languages you don’t use
22
# DISABLE_LINTERS: 'RUBY,GO'
0 commit comments