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 27c6fc6 commit 46abf5fCopy full SHA for 46abf5f
.github/workflows/ci_target_repo_workflow_call_pr.yml
@@ -0,0 +1,16 @@
1
+name: Single PR CI Verification Trigger
2
+on:
3
+ workflow_dispatch:
4
+ inputs:
5
+ pullRequestNumber:
6
+ description: 'Pull Request Number - DEVELOP BRANCH'
7
+ required: true
8
+ type: string
9
+
10
+jobs:
11
+ trigger-verification:
12
+ uses: rdk-e/build_tools_workflows/.github/workflows/ci_verification_manual_trigger_pr.yml@develop
13
+ with:
14
+ pullRequestNumber: ${{ github.event.inputs.pullRequestNumber }}
15
+ secrets:
16
+ RDKE_GITHUB_TOKEN: ${{ secrets.RDKE_GITHUB_TOKEN }}
0 commit comments