Skip to content

chore: Configure Renovate #107

chore: Configure Renovate

chore: Configure Renovate #107

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
upload:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
- name: Upload JSON OpenAPI spec
id: upload-json-openapi-spec
uses: ./
with:
dry-run: true
path-to-file: ./openapi.json
env:
API_KEY: ${{ secrets.HEY_API_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload YAML OpenAPI spec
id: upload-yaml-openapi-spec
uses: ./
with:
dry-run: true
path-to-file: ./openapi.yaml
env:
API_KEY: ${{ secrets.HEY_API_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}