Skip to content

Automated Bump Version Candidate #378

Automated Bump Version Candidate

Automated Bump Version Candidate #378

Workflow file for this run

name: Check Milestone
on:
pull_request:
types:
- opened
- synchronize
- reopened
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
checkmilestone:
runs-on: ubuntu-latest
if: ${{ !startsWith(github.head_ref, 'latest-dependency-update-') }}
steps:
- uses: actions/checkout@v4
- name: Set up latest Python
uses: actions/setup-python@v5
with:
python-version-file: 'pyproject.toml'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install requests
python -m pip install .[dev]
- name: Check milestone
env:
GH_ACCESS_TOKEN: ${{ secrets.GH_ACCESS_TOKEN }}
run: >
python -m scripts.check_milestone -p ${{ github.event.number }}