api.acmcsuf.com brainstorming [Do not merge] #16
Workflow file for this run
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: godoc_pr_preview | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
request_documentation: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21 | |
- name: Generate comment | |
id: generate_comment | |
run: | | |
set -x | |
version=$(go mod download --json $REPO@$REV | jq -r .Version) | |
echo "Module version: $version" | |
echo "version=$version" >> "$GITHUB_OUTPUT" | |
link="https://godocs.io/$REPO@$version" | |
comment="### godoc reference preview ready ✨\n\n[![Go Documentation](https://godocs.io/github.com/acmcsufoss/api.acmcsuf.com?status.svg)]($link)" | |
echo "comment=$comment" >> "$GITHUB_OUTPUT" | |
env: | |
REPO: github.com/${{ github.event.pull_request.base.repo.full_name }} | |
REV: ${{ github.event.pull_request.head.sha }} | |
- name: Update existing issue comment | |
uses: peter-evans/find-comment@v1 | |
id: fc | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
comment-author: "github-actions[bot]" | |
body-includes: "### godoc reference preview ready ✨" | |
edit-mode: replace | |
- name: Create or update comment | |
if: steps.fc.outputs.comment-id == '' | |
uses: peter-evans/create-or-update-comment@v1 | |
with: | |
issue-number: ${{ github.event.pull_request.number }} | |
body: ${{ steps.generate_comment.outputs.comment }} | |
edit-mode: replace | |
- name: Update comment | |
if: steps.fc.outputs.comment-id != '' | |
uses: peter-evans/create-or-update-comment@v1 | |
with: | |
comment-id: ${{ steps.fc.outputs.comment-id }} | |
body: ${{ steps.generate_comment.outputs.comment }} | |
edit-mode: replace |