Skip to content

feat: Add autodiscover mode #1

feat: Add autodiscover mode

feat: Add autodiscover mode #1

Workflow file for this run

# For required checks when path filtering doesn;'t trigger the other job
# https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks
name: linter
on:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
branches:
- "main"
paths-ignore:
- '**.go'
- 'go.*'
- '.github/workflows/lint.yml'
- '.github/workflows/lint-required.yml'
- '.golangci.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
golangci-lint:
if: github.event.pull_request.draft == false
name: runner / golangci-lint
runs-on: ubuntu-22.04
steps:
- run: 'echo "No build required"'