We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 170d26c commit c6f47bbCopy full SHA for c6f47bb
1 file changed
.github/workflows/re-trigger-approvals.yml
@@ -0,0 +1,15 @@
1
+on:
2
+ pull_request_review:
3
+ types: [submitted, dismissed]
4
+ workflow_dispatch:
5
+ inputs:
6
+ head_sha:
7
+ description: Head SHA of the pull request to re-trigger approvals for
8
+ required: true
9
+ type: string
10
+
11
+jobs:
12
+ re-trigger:
13
+ uses: SonarSource/ci-github-actions/.github/workflows/re-trigger-approvals.yml@feat/jcarsique/BUILD-10590-verifiedApprovals
14
+ with:
15
+ head_sha: ${{ github.event.pull_request.head.sha || inputs.head_sha }}
0 commit comments