Skip to content

Commit

Permalink
update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiroshiba authored May 11, 2024
1 parent 469c04d commit a92016d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/update-readme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Update README

on:
workflow_dispatch:

jobs:
update-readme:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # Fetch all history for all branches and tags

- name: Update README
run: |
echo -e "\nHoge" >> README.md
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
commit-message: Add 'Hoge' to README
title: Add 'Hoge' to README
body: This PR adds 'Hoge' to the README.
branch: update-readme-${{ github.run_number }}

0 comments on commit a92016d

Please sign in to comment.