Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
name: Jekyll CI
permissions:
contents: read
permissions: {}

on:
pull_request:
Expand All @@ -22,6 +21,8 @@ concurrency:
jobs:
call-jekyll-build:
uses: ./.github/workflows/jekyll-build.yml
permissions:
contents: read
secrets:
GH_BOT_EMAIL: ${{ secrets.GH_BOT_EMAIL }}
GH_BOT_NAME: ${{ secrets.GH_BOT_NAME }}
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/jekyll-build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
---
name: Build Jekyll
permissions:
contents: read
permissions: {}

on:
workflow_call:
Expand Down Expand Up @@ -71,6 +70,8 @@ env:
jobs:
build:
name: Build Jekyll
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Input validation
Expand Down Expand Up @@ -235,8 +236,10 @@ jobs:
(github.event_name == 'push' && github.ref == 'refs/heads/master') ||
github.event_name == 'schedule' ||
github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
needs: build
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout gh-pages
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
Expand Down