Support remote signing key management (#30) #28
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: 'Update README.md with action.yml' | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
update-readme: | |
runs-on: [ 'ubuntu-latest' ] | |
steps: | |
- name: 'Checkout repository' | |
uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
- name: 'run auto-doc' | |
# v3.5.0 | |
uses: tj-actions/auto-doc@79cbc18cd7c4b037bb2fe25199cb14fef4bbad43 | |
with: | |
filename: 'action.yml' | |
output: 'README.md' | |
- name: 'Create pull request to update README.md' | |
id: cpr | |
# v6.0.2 | |
uses: peter-evans/create-pull-request@70a41aba780001da0a30141984ae2a0c95d8704e | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: "Update docs (${{ github.sha }})" | |
committer: GitHub <noreply@github.com> | |
author: github-actions[bot] <github-actions[bot]@users.noreply.github.com> | |
signoff: false | |
branch: "bot/update-docs-${{ github.sha }}" | |
delete-branch: true | |
title: "Update docs (${{ github.sha }})" | |
body: | | |
Auto-generated pull request to update README.md | |
labels: | | |
documentation | |
docs | |
automated pr | |
assignees: syncom | |
reviewers: thistletech/engineering | |
draft: false | |
base: ${{ github.head_ref }} |