feat(llm): optimize the main process of graph rag so that text2gql and subgraph query are in two different workflows #699
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: "License header & 3rd-party check" | |
on: | |
pull_request: | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
check-dependency: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout Repository' | |
uses: actions/checkout@v4 | |
- name: 'Dependency Review' | |
uses: actions/dependency-review-action@v4 | |
# Refer: https://github.com/actions/dependency-review-action | |
with: | |
fail-on-severity: low | |
comment-summary-in-pr: on-failure | |
# Action will fail if dependencies don't match the list (we could choose only one of the following) | |
deny-licenses: GPL-3.0, AGPL-1.0, AGPL-3.0, LGPL-2.0, CC-BY-3.0 | |
#allow-licenses: Apache-2.0, MIT | |
check-license-header: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check License Header | |
uses: apache/skywalking-eyes@main | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
log: info | |
token: ${{ github.token }} | |
config: .licenserc.yaml |