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