a0c8464e58
Build Package / build (ubuntu-latest) (push) Failing after 1s
CodeQL / Analyze (python) (push) Failing after 1s
Core Typecheck / core-typecheck (push) Failing after 1s
Linting / lint (push) Failing after 1s
llama-dev tests / test-llama-dev (push) Failing after 1s
Publish Sub-Package to PyPI if Needed / publish_subpackage_if_needed (push) Has been skipped
Sync Docs to Developer Hub / sync-docs (push) Failing after 0s
Build Package / build (windows-latest) (push) Has been cancelled
28 lines
813 B
YAML
28 lines
813 B
YAML
name: "Label Issues as 'good first issue'"
|
|
on:
|
|
schedule:
|
|
- cron: "30 1 * * 1" # Every Monday at 1:30 AM UTC
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
with:
|
|
fetch-depth: 0
|
|
- name: Generate GitHub App token
|
|
id: app-token
|
|
uses: actions/create-github-app-token@v3
|
|
with:
|
|
app-id: ${{ secrets.CI_BOT_APP_ID }}
|
|
private-key: ${{ secrets.CI_BOT_PRIVATE_KEY }}
|
|
|
|
- name: Classify Issues as Good First Issues
|
|
uses: run-llama/issue-classifier@v0.2.0
|
|
with:
|
|
llama-cloud-api-key: ${{ secrets.LLAMA_CLOUD_API_KEY }}
|
|
github-token: ${{ steps.app-token.outputs.token }}
|
|
repository-owner: "run-llama"
|
|
repository-name: "llama_index"
|