feat(InterviewBooking): almost preped for merge into one repo

This commit is contained in:
2024-12-21 22:52:36 -07:00
parent 0de072a5ad
commit 9eae4153ad
31 changed files with 12 additions and 136 deletions

View File

@ -12,7 +12,7 @@ on:
push:
branches:
- main
- master
# each workflow must have at least one job.
# jobs run in parallel by default (we can change that).
@ -47,7 +47,7 @@ jobs:
Dockerhub:
runs-on: ubuntu-latest
needs: ruffLint # will only run if linter is successful
if: ${{ github.ref == 'refs/heads/main' || github.event.pull_request.merged == true }} # Runs if it's a push to 'main' or a merged PR to 'main'
if: ${{ github.ref == 'refs/heads/master' || github.event.pull_request.merged == true }} # Runs if it's a push to 'main' or a merged PR to 'main'
steps:
- name: checkout
uses: actions/checkout@v3