Add testing to describe action #1
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
| # Basic PR Description Generation | |
| # Automatically generates AI-powered descriptions for new pull requests | |
| name: Auto-describe PRs | |
| on: | |
| pull_request: | |
| types: [opened] | |
| jobs: | |
| describe: | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Generate PR Description | |
| uses: ./ | |
| with: | |
| augment_session_auth: ${{ secrets.AUGMENT_SESSION_AUTH }} | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| pull_number: ${{ github.event.pull_request.number }} | |
| repo_name: ${{ github.repository }} | |
| custom_guidelines: | | |
| - Always reference Jira ticket numbers in brackets format (example: [ENG-123] or [PLAT-11169]) | |
| - Always reference Jira ticket of the PR in the PR description near the top of PR | |
| - Highlight any database migrations included in the changes | |
| - Highlight any backfills included in the changes |