chore(deps-dev): bump typescript from 5.3.2 to 5.4.5 in /web #3958
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
# This workflow enables developers to call PR-Agents `/[actions]` in PR's comments and upon PR creation. | |
# Learn more at https://www.codium.ai/pr-agent/ | |
name: PR-Agent | |
on: | |
pull_request: | |
issue_comment: | |
permissions: | |
issues: write | |
pull-requests: write | |
jobs: | |
pr_agent_job: | |
runs-on: ubuntu-latest | |
name: Run pr agent on every pull request | |
if: > | |
( | |
github.event_name == 'pull_request' && | |
github.event.pull_request.head.repo.full_name == github.repository && | |
github.ref_name != 'master' | |
) || | |
( | |
github.event_name == 'issue_comment' && | |
github.repository == github.event.repository.full_name | |
) | |
steps: | |
- name: PR Agent action step | |
id: pragent | |
uses: Codium-ai/pr-agent@main | |
env: | |
OPENAI_KEY: ${{ secrets.TONYS_OPENAI_KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
github_action_config.auto_review: 'false' | |
github_action_config.auto_describe: 'false' | |
github_action_config.auto_improve: 'false' |