Skip to content

Feature/proxy uri

Feature/proxy uri #18

Workflow file for this run

name: Changelog Check
on:
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
contents: read
jobs:
changelog:
runs-on: ubuntu-latest
timeout-minutes: 5
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Validate changelog
run: python -c "from pathlib import Path; data = Path('CHANGELOG.md').read_text(encoding='utf-8'); assert '[Unreleased]' in data"