diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6787a6b6..282f50ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,6 +1,6 @@ name: Java CI -on: [push, pull_request_target] +on: [push, pull_request] jobs: build: @@ -8,9 +8,6 @@ jobs: steps: - uses: actions/checkout@v2 - with: - ref: ${{github.event.pull_request.head.ref}} - repository: ${{github.event.pull_request.head.repo.full_name}} - name: Set up JDK 17 uses: actions/setup-java@v2 with: @@ -19,11 +16,3 @@ jobs: cache: maven - name: Build with Maven run: mvn --batch-mode --update-snapshots verify - - uses: mate-academy/auto-approve-action@v2 - if: ${{ github.event.pull_request && success() }} - with: - github-token: ${{ github.token }} - - uses: mate-academy/auto-reject-action@v2 - if: ${{ github.event.pull_request && failure() }} - with: - github-token: ${{ github.token }}