mirror of
https://github.com/peco/peco.git
synced 2026-09-10 07:16:29 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](9c091bb21b...3d3c42e5aa)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 7.0.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
26 lines
816 B
YAML
26 lines
816 B
YAML
name: Update man page
|
|
|
|
on:
|
|
push:
|
|
branches: [master]
|
|
paths: ['README.md']
|
|
|
|
jobs:
|
|
update-manpage:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
|
|
- name: Install pandoc
|
|
run: sudo apt-get update && sudo apt-get install -y pandoc
|
|
- name: Generate man page
|
|
run: bash contrib/man/generate.sh
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1
|
|
with:
|
|
commit-message: "docs: regenerate man page from README"
|
|
title: "docs: update man page"
|
|
body: |
|
|
Auto-generated update to `contrib/man/peco.1` from changes to `README.md`.
|
|
branch: update-manpage
|
|
delete-branch: true
|