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 68cdb7b commit 0e5c925Copy full SHA for 0e5c925
.github/workflows/lockfiles.yaml
@@ -376,3 +376,15 @@ jobs:
376
run: |
377
git commit -F "${COMMIT_MSG}"
378
git push -u origin "${{ needs.pr.outputs.PR_REF }}"
379
+
380
+ - name: Create new PR
381
+ if: ${{ inputs.pr == 'new' }}
382
+ run: >
383
+ gh pr create
384
+ --base "${{ needs.pr.outputs.PR_BASE_REF }}"
385
+ --title "pants generate-lockfiles: ${RESOLVES_CSV}"
386
+ --body-file "${PR_COMMENT}"
387
+ --reviewer "Maintainers"
388
+ --assignee "${{ github.event.sender.login }}"
389
+ --label "external dependency"
390
+ --label "python3"
0 commit comments