ci: fix runtime publish (tag/Node), commit regenerated runtime back, auto-commit sponsor image #406
Workflow file for this run
This file contains hidden or 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: Auto Changelog (v3) | |
| on: | |
| pull_request_target: | |
| branches: [ master ] | |
| types: [ closed ] | |
| workflow_dispatch: | |
| inputs: | |
| pr_number: | |
| description: 'PR number to process' | |
| required: true | |
| type: string | |
| jobs: | |
| auto-changelog: | |
| if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' | |
| runs-on: ubuntu-latest | |
| env: | |
| GOWORK: "off" | |
| permissions: | |
| contents: write | |
| pull-requests: read # GET /pulls/{n} and /pulls/{n}/files | |
| issues: read # GET /issues/{n}/comments (CodeRabbit summary) | |
| steps: | |
| - name: Checkout master | |
| uses: actions/checkout@v4 | |
| with: | |
| ref: master | |
| fetch-depth: 0 | |
| token: ${{ secrets.WAILS_REPO_TOKEN || secrets.GITHUB_TOKEN }} | |
| - name: Resolve PR number | |
| id: pr | |
| run: | | |
| if [ "${{ github.event_name }}" = "workflow_dispatch" ]; then | |
| echo "number=${{ github.event.inputs.pr_number }}" >> $GITHUB_OUTPUT | |
| else | |
| echo "number=${{ github.event.pull_request.number }}" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Check if changelog was updated in PR | |
| id: check | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PR_NUMBER: ${{ steps.pr.outputs.number }} | |
| run: | | |
| FILES=$(curl -sf \ | |
| -H "Authorization: Bearer $GITHUB_TOKEN" \ | |
| -H "Accept: application/vnd.github+json" \ | |
| "https://api.github.com/repos/${{ github.repository }}/pulls/${PR_NUMBER}/files?per_page=100" \ | |
| | jq -r '.[].filename') | |
| if echo "$FILES" | grep -q "^v3/UNRELEASED_CHANGELOG.md$"; then | |
| echo "skip=true" >> $GITHUB_OUTPUT | |
| echo "✅ Changelog was updated in PR — skipping auto-fill." | |
| else | |
| echo "skip=false" >> $GITHUB_OUTPUT | |
| echo "ℹ️ Changelog not updated — auto-filling." | |
| fi | |
| - name: Setup Go | |
| if: steps.check.outputs.skip == 'false' | |
| uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.25' | |
| - name: Auto-fill changelog entry | |
| if: steps.check.outputs.skip == 'false' | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| OPENROUTER_API_KEY: ${{ secrets.OPENROUTER_API_KEY }} | |
| GITHUB_REPOSITORY: ${{ github.repository }} | |
| PR_NUMBER: ${{ steps.pr.outputs.number }} | |
| run: go run v3/scripts/auto-changelog.go | |
| - name: Commit and push | |
| if: steps.check.outputs.skip == 'false' | |
| env: | |
| PR_NUMBER: ${{ steps.pr.outputs.number }} | |
| PR_TITLE: ${{ github.event.pull_request.title }} | |
| run: | | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| git add v3/UNRELEASED_CHANGELOG.md | |
| # The auto-fill step intentionally writes nothing for internal-only PRs | |
| # (ci/chore/build/test/style). Skip cleanly so the merge doesn't go red. | |
| if git diff --cached --quiet; then | |
| echo "ℹ️ No changelog entry to commit (internal PR or no change) — skipping." | |
| exit 0 | |
| fi | |
| git commit -m "chore(changelog): auto-add entry for PR #${PR_NUMBER} — ${PR_TITLE}" | |
| git push https://x-access-token:${{ secrets.WAILS_REPO_TOKEN || secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}.git master |