diff --git a/.github/auto_assign.yml b/.github/auto_assign.yml new file mode 100644 index 0000000..d8403f4 --- /dev/null +++ b/.github/auto_assign.yml @@ -0,0 +1,7 @@ +addReviewers: true +reviewers: + - ajutamangdev + +numberOfReviewers: 1 +skipKeywords: + - '@dependabot' \ No newline at end of file diff --git a/.github/workflows/lint-test.yml b/.github/workflows/lint-test.yml new file mode 100644 index 0000000..1228d22 --- /dev/null +++ b/.github/workflows/lint-test.yml @@ -0,0 +1,22 @@ +name: Lint Test + +on: + pull_request: + paths: + - '**.go' + - '**.mod' + workflow_dispatch: + +jobs: + lint: + name: Lint Test + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Set up Go + uses: projectdiscovery/actions/setup/go@v1 + + - name: Run golangci-lint + uses: projectdiscovery/actions/golangci-lint@v1 \ No newline at end of file