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 3d1a5c8 commit d321026Copy full SHA for d321026
.github/workflows/oncall-assign.yml
@@ -15,7 +15,7 @@
15
name: Oncall Assign
16
17
on:
18
- pull_request:
+ pull_request_target:
19
types: [labeled, ready_for_review]
20
21
permissions:
@@ -40,9 +40,11 @@ jobs:
40
with:
41
python-version: '3.10'
42
43
+ - name: Install dependencies
44
+ run: pip install requests
45
+
46
- name: Assign Reviewer
47
env:
48
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
49
run: |
- pip install --no-cache-dir uv
- uv run python .github/scripts/oncall_manager.py assign --pr ${{ github.event.pull_request.number }}
50
+ python .github/scripts/oncall_manager.py assign --pr ${{ github.event.pull_request.number }}
0 commit comments