Submit B12 Application #4
This file contains hidden or 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: Submit B12 Application | |
| on: | |
| workflow_dispatch: | |
| jobs: | |
| submit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install requests | |
| - name: B12 application | |
| env: | |
| APPLICANT_EMAIL: ${{ secrets.APPLICANT_EMAIL }} | |
| APPLICANT_RESUME_LINK: ${{ secrets.APPLICANT_RESUME_LINK }} | |
| APPLICANT_NAME: ${{ secrets.APPLICANT_NAME }} | |
| run: | | |
| python b12_application.py |