Add agent state header to info endpoint #34
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: Release notes | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
# Important that we run on `labeled` and `unlabeled` to pick up `no-releasenote` being added/removed | |
# DEV: [opened, reopened, synchronize] is the default | |
types: [opened, reopened, synchronize, labeled, unlabeled, ready_for_review] | |
jobs: | |
validate: | |
name: Validate release notes | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# Include all history and tags | |
with: | |
fetch-depth: 0 | |
# Ensure a new reno release note was added in this PR. | |
# Use `reno new <slug>` to add a new note to `no-releasenote`, | |
# or add `no-releasenote` label if no release note is needed. | |
- name: Ensure release note added | |
# Only run this on pull requests | |
if: github.event_name == 'pull_request' | |
run: releasenotes/check-releasenotes | |
- uses: actions/setup-python@v2 | |
name: Install Python | |
with: | |
python-version: '3.12' | |
- name: Install Dependencies | |
run: pip install reno docutils | |
- name: Lint release notes | |
run: reno lint |