diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..432d120 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,14 @@ +name: Build Jekyll site +on: + pull_request_review: + types: [submitted, edited] + +jobs: + build: + if: ${{ github.event.pull_request.base.ref == 'main' }} + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + - name: Build + uses: jerryjvl/jekyll-build-action@v1