Skip to content

chore(deps): bump the production-dependencies group across 1 directory with 7 updates #492

chore(deps): bump the production-dependencies group across 1 directory with 7 updates

chore(deps): bump the production-dependencies group across 1 directory with 7 updates #492

Workflow file for this run

name: Repo Guard
on:
pull_request:
branches: [develop]
types: [opened, synchronize, reopened, ready_for_review]
issues:
types: [opened]
issue_comment:
types: [created]
permissions:
contents: read
pull-requests: write
issues: write
jobs:
guard:
if: >
github.actor != 'dependabot[bot]' &&
(
(
github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name == github.repository
) ||
(
github.event_name == 'issues' &&
contains(fromJSON('["OWNER","MEMBER","COLLABORATOR"]'), github.event.issue.author_association)
) ||
(
github.event_name == 'issue_comment' &&
contains(fromJSON('["OWNER","MEMBER","COLLABORATOR"]'), github.event.comment.author_association)
)
)
runs-on: ubuntu-latest
steps:
- uses: ceilf6/repo-guard@main
with:
type: both
provider: ${{ vars.LLM_PROVIDER }}
model: ${{ vars.LLM_MODEL }}
api-key: ${{ secrets.LLM_API_KEY }}
base-url: ${{ vars.LLM_BASE_URL }}