github.com/chnsz/golangsdk@v0.0.0-20240506093406-85a3fbfa605b/.github/workflows/prow-merge-on-lgtm.yml (about) 1 name: Merge on LGTM Label 2 on: 3 schedule: 4 - cron: "*/5 * * * *" 5 jobs: 6 merge-checker: 7 runs-on: ubuntu-latest 8 env: 9 ROBOT_PAT: ${{ secrets.ROBOT_PAT }} 10 steps: 11 - uses: chnsz/prow-github-actions@v1.0.0 12 if: ${{ env.ROBOT_PAT }} 13 with: 14 jobs: 'lgtm' 15 github-token: "${{ env.ROBOT_PAT }}" 16 # this configuration is optional and will default to 'merge' 17 # possible options are 'merge', 'rebase', or 'squash' 18 merge-method: 'squash'