build(deps): bump actions/checkout from 3 to 4 #20
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 | |
on: | |
push: | |
branches: | |
- "**" | |
paths: | |
- action.tml | |
- .github/workflows/update-readme.yml | |
workflow_dispatch: | |
jobs: | |
generate: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Update README.md | |
uses: ./ | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
title: "docs(readme): update README.md tables on ${{ github.ref_name }}" | |
commit-message: "docs(readme): updated README.md inputs table" | |
body: "Updated README.md inputs/outputs tables, according to action.yml file" | |
branch: update-readme--${{ github.ref_name }} | |
delete-branch: true | |
labels: bot,documentation |