Refactor RobotsTxt.php to correctly generate the Sitemap URLs by appending a forward slash before each sitemap path. #22
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: Autofill PR Description | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
branches: | ||
- main | ||
permissions: | ||
pull-requests: write | ||
contents: write | ||
jobs: | ||
openai-pr-description: | ||
runs-on: ubuntu-22.04 | ||
# Run the job only if the actor is NOT Dependabot | ||
if: ${{ !startsWith(github.actor, 'dependabot') } | ||
Check failure on line 18 in .github/workflows/open-ai-pr-description.yml
|
||
steps: | ||
- uses: platisd/openai-pr-description@master | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
openai_api_key: ${{ secrets.OPEN_AI_PR_DESCRIPTION_API_KEY }} |