diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8f07ff6205b..92f3319674f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -1,9 +1,10 @@ ---- -name: Lint +name: Lint Code Base -on: # yamllint disable-line rule:truthy - push: null - pull_request: null +on: + pull_request: + branches: [ master ] + push: + branches: [ feature/IVYPORTAL-16459-OpenSource ] jobs: build: @@ -25,9 +26,7 @@ jobs: fetch-depth: 0 - name: Super-linter - uses: super-linter/super-linter@v6.0.0 # x-release-please-version + uses: super-linter/super-linter@v6.3.0 # x-release-please-version env: - DEFAULT_BRANCH: main # To report GitHub Actions status checks GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} -...