root dir per script #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# name: Validate New Contributor | |
on: | |
push: | |
branches: | |
- new_contributor_validations | |
# pull_request: | |
# types: [opened, edited] | |
# branches: | |
# - new_contributor_validations # TODO: use main | |
# paths: | |
# - 'CONTRIBUTING.md' | |
# workflow_call: | |
# inputs: | |
# pull-request-number: | |
# required: true | |
# type: number | |
env: | |
PYTHON_VERSION: 3.11 | |
WORKING_DIR: .github/scripts/python | |
jobs: | |
validate-pr-review-state: | |
uses: ocadotechnology/codeforlife-workspace/.github/workflows/validate-pull-request.yaml@new_contributor_validations # TODO: use @main | |
secrets: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
number: 53 | |
review-state: APPROVED | |
# - name: 🛫 Checkout Pull Request | |
# if: ${{ github.event_name == 'workflow_call' }} | |
# run: gh pr checkout ${{ inputs.pull-request-number }} | |
# - uses: ocadotechnology/codeforlife-workspace/.github/actions/python/setup-environment@new_contributor_validations # TODO: use @main | |
# with: | |
# python-version: ${{ env.PYTHON_VERSION }} | |
# working-directory: ${{ env.WORKING_DIR }} | |
# - name: 🕵️ Validate New Contributor | |
# working-directory: ${{ env.WORKING_DIR }} | |
# run: pipenv run python validate_new_contributor.py |