Skip to content

Commit

Permalink
Declare explicit outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
TWiStErRob committed Sep 14, 2023
1 parent 0c5e00b commit 8334962
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/CI-pr.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,18 @@
name: "Find PR"

on:
workflow_call
workflow_call:
outputs:
found:
value: ${{ jobs.pull_request.outputs.found }}
base_ref:
value: ${{ jobs.pull_request.outputs.base_ref }}
base_sha:
value: ${{ jobs.pull_request.outputs.base_sha }}
head_ref:
value: ${{ jobs.pull_request.outputs.head_ref }}
head_sha:
value: ${{ jobs.pull_request.outputs.head_sha }}

jobs:

Expand Down

0 comments on commit 8334962

Please sign in to comment.