-
Notifications
You must be signed in to change notification settings - Fork 212
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release/v1' into 1853-installation-improvement
- Loading branch information
Showing
60 changed files
with
523 additions
and
252 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# https://github.com/jpmcb/prow-github-actions | ||
|
||
# This reacts to issue comments and checks for prow slash comments, and runs the command if found. | ||
name: "React to Prow Commands" | ||
on: [issue_comment] | ||
permissions: | ||
issues: write # give permission to apply the lgtm label | ||
pull-requests: write # give permission to approve the PR | ||
|
||
jobs: | ||
execute: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: jpmcb/prow-github-actions@2ac4434b3ce3d523fc3e28a879ec671c4a7750fa # main | ||
with: | ||
prow-commands: | | ||
/approve | ||
/lgtm | ||
github-token: "${{ secrets.GITHUB_TOKEN }}" |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# https://github.com/jpmcb/prow-github-actions | ||
|
||
# This will check all pull requests that have the lgtm label, and if GitHub thinks it is mergeable, then the PR is merged. | ||
name: "Merge Ready PRs" | ||
on: [pull_request] | ||
permissions: | ||
issues: write # give permission to apply the lgtm label | ||
pull-requests: write # give permission to approve the PR | ||
|
||
jobs: | ||
execute: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: jpmcb/prow-github-actions@2ac4434b3ce3d523fc3e28a879ec671c4a7750fa # main | ||
with: | ||
jobs: "lgtm" | ||
github-token: "${{ secrets.GITHUB_TOKEN }}" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# reviewers can comment with /lgtm, a label "lgtm" is put on the issue | ||
reviewers: | ||
- vinozzz | ||
|
||
# approvers can comment with /approve, the bot leaves an approve code review, allowing it to be merged | ||
approvers: | ||
- carolynvs | ||
|
||
# Once a PR has the lgtm label, and a "green" code review (from /approve), a cron job will notice the PR and merge it |
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
Oops, something went wrong.