Prow / Merge on lgtm label #21300
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (C) Nicolas Lamirault <nicolas.lamirault@gmail.com> | |
# | |
# This Source Code Form is subject to the terms of the Mozilla Public | |
# License, v. 2.0. If a copy of the MPL was not distributed with this | |
# file, You can obtain one at https://mozilla.org/MPL/2.0/. | |
# | |
# SPDX-License-Identifier: MPL-2.0 | |
name: Prow / Merge on lgtm label | |
on: | |
schedule: | |
- cron: "0 * * * *" | |
jobs: | |
execute: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: jpmcb/prow-github-actions@v1.1.3 | |
with: | |
jobs: 'lgtm' | |
github-token: "${{ secrets.GITHUB_TOKEN }}" | |
# this configuration is optional and will default to 'merge' | |
# possible options are 'merge', 'rebase', or 'squash' | |
merge-method: 'squash' |