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 1a92761 commit 18489eaCopy full SHA for 18489ea
.github/workflows/assigner-workflow.yml
@@ -74,6 +74,10 @@ jobs:
74
env:
75
GITHUB_TOKEN: ${{ secrets.ZB_PR_ASSIGNER_GITHUB_TOKEN }}
76
run: |
77
- cat ./pr/manifest_areas.json
+ if [ -f "./pr/manifest_areas.json" ]; then
78
+ ARGS-"--areas ./pr/manifest_areas.json"
79
+ else
80
+ ARGS=""
81
+ fi
82
python3 scripts/set_assignees.py -P ${{ env.PR_NUM }} -M MAINTAINERS.yml -v \
- --repo ${{ github.event.repository.name }}
83
+ --repo ${{ github.event.repository.name }} ${ARGS}
0 commit comments