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 867d4c7Copy full SHA for 867d4c7
.github/workflows/request-review.yaml
@@ -0,0 +1,18 @@
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
+ if: github.repository == 'projectcontour/helm-charts'
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
14
+ - name: Request reviewers
15
+ env:
16
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17
+ run: |
18
+ gh pr edit ${{ github.event.pull_request.number }} --add-reviewer contour-helm-chart-maintainers
0 commit comments