Skip to content

verify new contributor test #1

verify new contributor test

verify new contributor test #1

name: Verify New Contributor
on:
workflow_dispatch:
inputs:
pull-request-number:
description: "The number of the new contributor's PR."
required: true
jobs:
validate-pr-review-state:
uses: ocadotechnology/codeforlife-workspace/.github/workflows/validate-pull-request/workflow.yaml@new_contributor_validations # TODO: use @main

Check failure on line 12 in .github/workflows/verify-new-contributor.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/verify-new-contributor.yaml

Invalid workflow file

invalid value workflow reference: workflows must be defined at the top level of the .github/workflows/ directory
secrets: inherit
with:
number: ${{ inputs.pull-request-number }}
review-state: APPROVED
validate-new-contributor:
needs: [validate-pr-review-state]
uses: ocadotechnology/codeforlife-workspace/.github/workflows/validate-new-contributor.yaml@new_contributor_validations # TODO: use @main
verify-new-contributor:
needs: [validate-new-contributor]
runs-on: ubuntu-latest
steps:
- name: 📧 Send Verification Email
uses: ocadotechnology/codeforlife-workspace/.github/actions/python/send-email@new_contributor_validations # TODO: use @main
with:
auth: ${{ secrets.DOTDIGITAL_API_USER_AUTH }}
to-addresses: '["${{ env.CONTRIBUTOR_EMAIL_ADDRESS }}"]'
campaign-id: 1506387
personalization-values: '[{"name": "PR_URL", "value": "${{ github.event.pull_request.html_url }}"}]'