Update readme-micro.yaml #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ReadMe Micro | |
# Run workflow for every push to the `main` branch | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, edited] | |
jobs: | |
sync: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout this repo | |
uses: actions/checkout@v3 | |
# Run GitHub Action to sync all OpenAPI files in the repo | |
- name: GitHub Action | |
uses: readmeio/[email protected] | |
env: | |
BASE_URL: ${{ vars.BASE_URL }} | |
with: | |
readme-micro: "'**/*.{yaml,yml,json}' --key=${{ secrets.README_MICRO_SECRET }}" |