-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
22 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,30 @@ | ||
name: Generate README with Hype | ||
on: [pull_request] | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: "1.22.x" | ||
cache-dependency-path: subdir/go.sum | ||
- uses: actions/checkout@v4 | ||
with: | ||
repository: ${{ github.event.pull_request.head.repo.full_name }} | ||
ref: ${{ github.event.pull_request.head.ref }} | ||
- name: Set up Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: "1.22.x" | ||
cache-dependency-path: subdir/go.sum | ||
|
||
- name: Install hype | ||
run: go install github.com/gopherguides/hype/cmd/hype@latest | ||
- name: Install hype | ||
run: go install github.com/gopherguides/hype/cmd/hype@latest | ||
|
||
- name: Run hype | ||
run: pushd .hype;hype export -format=markdown -f module.md > ../README.md;popd | ||
- name: Run hype | ||
run: pushd .hype;hype export -format=markdown -f module.md > ../README.md;popd | ||
|
||
- name: Commit README back to the repo | ||
run: |- | ||
git rev-parse --abbrev-ref HEAD | ||
git config user.name 'GitHub Actions' | ||
git config user.email '[email protected]' | ||
git diff --quiet || (git add README.md && git commit -am "Updated README") | ||
git push origin ${{github.event.pull_request.head.ref}} | ||
- name: Commit README back to the repo | ||
run: |- | ||
git rev-parse --abbrev-ref HEAD | ||
git config user.name 'GitHub Actions' | ||
git config user.email '[email protected]' | ||
git diff --quiet || (git add README.md && git commit -am "Updated README") | ||
git push origin ${{github.event.pull_request.head.ref}} |