Skip to content
Merged
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
15 changes: 6 additions & 9 deletions .github/workflows/update-db.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
---
name: Update
permissions:
contents: read
permissions: {}

on:
pull_request:
branches:
- master
types:
- opened
- synchronize
- reopened
push:
branches:
- master
Expand All @@ -24,6 +17,8 @@ concurrency:

jobs:
update:
permissions:
contents: read
runs-on: ubuntu-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -68,10 +63,12 @@ jobs:

call-jekyll-build:
needs: update
permissions:
contents: read
uses: LizardByte/LizardByte.github.io/.github/workflows/jekyll-build.yml@master
secrets:
GH_BOT_EMAIL: ${{ secrets.GH_BOT_EMAIL }}
GH_BOT_NAME: ${{ secrets.GH_BOT_NAME }}
GH_BOT_NAME: ${{ vars.GH_BOT_NAME }}
GH_BOT_TOKEN: ${{ secrets.GH_BOT_TOKEN }}
with:
site_artifact: 'update'
Expand Down