Skip to content

Commit

Permalink
mayb fail?
Browse files Browse the repository at this point in the history
  • Loading branch information
bracesproul committed Jun 12, 2024
1 parent c1a355b commit 3832635
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/compatibility.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ jobs:
another-job:
needs: get-changed-files
runs-on: ubuntu-latest
if: ${{ contains(needs.get-changed-files.outputs.changed_files, 'libs/langchain-community') || contains(needs.get-changed-files.outputs.changed_files, 'langchain-core') }}
if: ${{ startsWith(join(needs.get-changed-files.outputs.changed_files, ' '), 'libs/langchain-community/') || startsWith(join(needs.get-changed-files.outputs.changed_files, ' '), 'langchain-core/') }}
steps:
- name: Use changed files
run: echo "${{ contains(needs.get-changed-files.outputs.changed_files, 'libs/langchain-community') || contains(needs.get-changed-files.outputs.changed_files, 'langchain-core') }}"

run: echo "${{ startsWith(join(needs.get-changed-files.outputs.changed_files, ' '), 'libs/langchain-community/') || startsWith(join(needs.get-changed-files.outputs.changed_files, ' '), 'langchain-core/') }}"
# cohere-lowest-deps:
# needs: get-changed-files
# runs-on: ubuntu-latest
Expand Down

0 comments on commit 3832635

Please sign in to comment.