Skip to content

Fix broken deploy by removing obsolete changelog generation #1150

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 0 additions & 32 deletions .github/workflows/auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,39 +35,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

generate-changelog:
if: ${{ needs.semantic-version.outputs.release-tag }}
needs: semantic-version
name: Generate Changelog
runs-on: ubuntu-latest
environment: auto-release
permissions:
contents: write
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: ${{ secrets.GHA_TOKEN }}

- name: Setup backend
uses: ./.github/actions/setup-environment

- name: Generate changelog
env:
OPEN_AI_TOKEN: ${{ secrets.OPEN_AI_TOKEN }}
run: uv run python src/codegen/gscli/cli.py generate changelog --openai-key ${{ secrets.OPEN_AI_TOKEN }}

- name: Commit changes
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git add docs/changelog/changelog.mdx
git diff --staged --quiet || git commit -m "update changelog"

- name: Push changes
uses: ad-m/github-push-action@master
with:
branch: ${{ github.ref }}

release:
if: ${{ needs.semantic-version.outputs.release-tag }}
Expand Down