Fix workflow for regenerating CLI help messages #6
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: Regenerate help messages of CLI commands | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
update-help-messages: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Install missing distro dependencies | |
run: sudo apt update && sudo apt-get install libkrb5-dev | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
- name: Install dependencies | |
run: pip3 install packitos | |
- name: Regenerate help messages | |
run: python3 files/generate_cli_messages.py | |
- name: Check for changes | |
id: check_changes | |
run: git diff --exit-code | |
- name: Create pull request | |
if: steps.check_changes.outputs.exit_code != '0' | |
uses: peter-evans/create-pull-request@v4 | |
with: | |
TOKEN: ${{ secrets.RELEASEBOT_GITHUB_TOKEN }} | |
commit-message: "Update help messages of CLI commands" | |
title: "Update help messages of CLI commands" | |
body: "Automatically regenerated help messages for CLI command docs." | |
delete-branch: true |