You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
winston 1bb9530a16
ci: skip pushing on forks
2 years ago
..
readme.yml ci: skip pushing on forks 2 years ago

readme.yml

name: Generate READMEs

on:
  push:
    paths:
      - "resources/**"
  pull_request:
    paths:
      - "resources/**"

env:
  DENO_DIR: deno_cache

jobs:
  readme:
    runs-on: ubuntu-latest
    name: Re-generate README sections

    steps:
      - uses: actions/checkout@v3
        with:
          ref: ${{ github.head_ref }}
      - name: Set up Deno
        uses: denoland/setup-deno@v1
        with:
          deno-version: v1.x
      - name: Cache Deno dependencies
        uses: actions/cache@v3
        with:
          key: ${{ hashFiles('resources/generate/deno.lock') }}
          path: ${{ env.DENO_DIR }}
      - name: Update READMEs
        working-directory: resources/generate
        run: ./main.ts
      - name: Push changes
        uses: stefanzweifel/git-auto-commit-action@v4
        # skip pushing on forks
        if: ${{ !github.event.pull_request.head.repo.fork }}
        with:
          commit_message: "chore: re-generate README sections"
          branch: ${{ github.head_ref }}
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json