File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change 18
18
CheckForMetadataChanges :
19
19
# The type of runner that the job will run on
20
20
runs-on : ubuntu-latest
21
+ permissions :
22
+ pull-requests : write
21
23
if : github.event_name == 'workflow_dispatch' || (github.event_name == 'pull_request' && github.event.action != 'closed')
22
24
# Steps represent a sequence of tasks that will be executed as part of the job
23
25
steps :
51
53
body : body
52
54
})
53
55
56
+ await github.rest.pulls.createReview({
57
+ owner : context.repo.owner,
58
+ repo : context.repo.repo,
59
+ body : body,
60
+ pull_number : context.issue.number,
61
+ event : ' REQUEST_CHANGES'
62
+ })
63
+
64
+ core.setFailed(body)
65
+
54
66
# [0] https://help.github.com/en/actions/configuring-and-managing-workflows/using-environment-variables
55
67
# [1] https://hub.github.com/hub-pull-request.1.html
56
68
# https://help.github.com/en/actions/configuring-and-managing-workflows/authenticating-with-the-github_token
You can’t perform that action at this time.
0 commit comments