We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34e2297 commit 650bffeCopy full SHA for 650bffe
.github/workflows/request-review.yaml
@@ -0,0 +1,17 @@
1
+on:
2
+ pull_request:
3
+ types: [opened, reopened, ready_for_review]
4
+
5
+permissions:
6
+ pull-requests: write
7
8
+jobs:
9
+ request-review:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
13
+ - name: Request reviewers
14
+ env:
15
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
16
+ run: |
17
+ gh pr edit ${{ github.event.pull_request.number }} --add-reviewer contour-helm-chart-maintainers
0 commit comments