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 f426c0b commit 83bf818Copy full SHA for 83bf818
.github/workflows/update-plugin-list.yml
@@ -46,6 +46,7 @@ jobs:
46
run: python scripts/update-plugin-list.py
47
48
- name: Create Pull Request
49
+ id: pr
50
uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e
51
with:
52
commit-message: '[automated] Update plugin list'
@@ -55,3 +56,13 @@ jobs:
55
56
branch-suffix: short-commit-hash
57
title: '[automated] Update plugin list'
58
body: '[automated] Update plugin list'
59
+ draft: true
60
+
61
+ - name: Instruct the maintainers to trigger CI by undrafting the PR
62
+ env:
63
+ GITHUB_TOKEN: ${{ github.token }}
64
+ run: >-
65
+ gh pr comment
66
+ --body 'Please mark the PR as ready for review to trigger PR checks.'
67
+ --repo '${{ github.repository }}'
68
+ '${{ steps.pr.outputs.pull-request-number }}'
0 commit comments