Skip to content

changes

changes #12

Workflow file for this run

# name: Generate Read More related
# on:
# push:
# branches:
# - automate-read-more
# pull_request:
# concurrency:
# group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}'
# cancel-in-progress: true
# jobs:
# generate-read-more:
# runs-on: "ubuntu-latest"
# permissions:
# contents: write
# steps:
# - name: Checkout
# uses: actions/checkout@v4
# with:
# ref: ${{ github.head_ref }}
# - name: Setup node
# uses: actions/setup-node@v3
# with:
# node-version: 16.13.x
# cache: npm
# - run: npm install
# - run: node compute-embeddings.js
# - run: node blog-metadata.mjs > related.yml
# # - uses: stefanzweifel/git-auto-commit-action@v5