feat: delegate ready issues to stable agent subjects #620
Workflow file for this run
This file contains hidden or 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: Deprecation deadlines | |
| # release-please opens its release PR with the OpenHands GitHub App token, so | |
| # this pull_request workflow also runs against the generated version bump. | |
| on: | |
| pull_request: | |
| branches: ["**"] | |
| push: | |
| branches: ["main", "master"] | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| python-version: "3.12" | |
| - name: Verify deprecation deadlines | |
| run: uv run python scripts/check_deprecations.py |