Bump JamesIves/github-pages-deploy-action from 4.6.8 to 4.6.9 in the github_actions group #179
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
name: Validate release notes | |
on: | |
push: | |
branches: | |
- 'main' | |
- 'release/**' | |
pull_request: | |
types: [opened, reopened, labeled, unlabeled, synchronize] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install pip packages | |
run: | | |
python -m pip install --upgrade pip | |
pip install -r requirements.txt | |
- name: Lint releasenotes | |
run: | | |
reno --rel-notes-dir spec_releasenotes/releasenotes lint | |
reno --rel-notes-dir ast_releasenotes/releasenotes lint | |
- name: Check releasenotes updated | |
if: github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'no-reno') | |
run: ./.github/renos_updated.sh |