Skip to content

Update create-pr-if-outdated.yml #1225

Update create-pr-if-outdated.yml

Update create-pr-if-outdated.yml #1225

name: pull-request-title-starts-with
on:
pull_request:
jobs:
skip-langchain-update:
if: "! startsWith(github.event.pull_request.title, 'fix(deps): update dependency langchain to')"
runs-on: ubuntu-latest
steps:
- run: echo "not updating langchain"
langchain-update:
if: "startsWith(github.event.pull_request.title, 'fix(deps): update dependency langchain to')"
runs-on: ubuntu-latest
steps:
- run: echo "update langchain"