Skip to content

Commit

Permalink
workflow call outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Jan 6, 2024
1 parent ff5a6bc commit 7df3b9b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/validate-new-contributor.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ on:
pull-request-number:
required: true
type: number
outputs:
email-address:
description: "The new contributor's email address."
value: ${{ jobs.validate.outputs.email-address }}

env:
PYTHON_VERSION: 3.11
Expand Down Expand Up @@ -50,4 +54,4 @@ jobs:
- name: 📧 Output Email Address
if: github.event_name != 'pull_request'
id: output-email-address
run: echo "[email protected]" >> "$GITHUB_OUTPUT"
run: echo "[email protected]" >> $GITHUB_OUTPUT

0 comments on commit 7df3b9b

Please sign in to comment.