Added note about unsupported models from OpenRouter #2
Workflow file for this run
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
# When none of the paths are matched for the pr_checks.yaml workflow | ||
# we still need the require-all-checks-to-pass job to pass | ||
name: PR checks docs | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
# paths: | ||
# - "docs/**" | ||
push: | ||
branches: | ||
- main | ||
# paths: | ||
# - "docs/**" | ||
jobs: | ||
require-all-checks-to-pass: | ||
if: always() | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v4 | ||
- name: Decide whether the needed jobs succeeded or failed | ||
uses: re-actors/alls-green@release/v1 | ||
with: | ||
allowed-failures: | ||
allowed-skips: | ||
jobs: [] | ||