build(deps): bump ubuntu from e96e81f to c35e29c in /tools/ubuntu-cross
#14
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: Generate Changelog for PR | |
| on: | |
| issue_comment: | |
| types: | |
| - created | |
| permissions: | |
| contents: read | |
| jobs: | |
| changelog: | |
| name: Generate Changelog for PR | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| if: > | |
| github.event.issue.pull_request && | |
| github.event.comment.body == '/changelog' | |
| steps: | |
| - name: Generate changelog for PR | |
| uses: Automattic/vip-actions/ai-changelog-generator@a10bde8914496b7386d10fc5df9b4ffa2fd72ef1 | |
| with: | |
| openai_api_key: ${{ secrets.OPENAI_API_KEY }} |