Skip to content

Commit

Permalink
Merge pull request #1 from xingyaoww/security_analyzer
Browse files Browse the repository at this point in the history
Merge main and resolve conflict
  • Loading branch information
adrgs authored Aug 8, 2024
2 parents c19d662 + d52c4bd commit b332dce
Show file tree
Hide file tree
Showing 128 changed files with 6,958 additions and 7,110 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/clean-up.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Workflow that cleans up outdated and old workflows to prevent out of disk issues
name: Delete old workflow runs

on:
workflow_dispatch:
inputs:
Expand Down Expand Up @@ -27,11 +29,11 @@ on:
delete_run_by_conclusion_pattern:
description: 'Remove runs based on conclusion: action_required, cancelled, failure, skipped, success'
required: true
default: "ALL"
default: 'ALL'
type: choice
options:
- "ALL"
- "Unsuccessful: action_required,cancelled,failure,skipped"
- 'ALL'
- 'Unsuccessful: action_required,cancelled,failure,skipped'
- action_required
- cancelled
- failure
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Workflow that builds and deploys the documentation website
name: Deploy Docs to GitHub Pages

on:
Expand All @@ -11,6 +12,7 @@ on:
- main

jobs:
# Build the documentation website
build:
name: Build Docusaurus
runs-on: ubuntu-latest
Expand All @@ -27,23 +29,23 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"

python-version: '3.11'
- name: Generate Python Docs
run: rm -rf docs/modules/python && pip install pydoc-markdown && pydoc-markdown
- name: Install dependencies
run: cd docs && npm ci
- name: Build website
run: cd docs && npm run build

- name: Upload Build Artifact
if: github.ref == 'refs/heads/main'
uses: actions/upload-pages-artifact@v3
with:
path: docs/build

# Deploy the documentation website
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
needs: build
if: github.ref == 'refs/heads/main' && github.repository == 'OpenDevin/OpenDevin'
# Grant GITHUB_TOKEN the permissions required to make a Pages deployment
Expand All @@ -54,7 +56,6 @@ jobs:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/dummy-agent-test.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Workflow that uses the DummyAgent to run a simple task
name: Run E2E test with dummy agent

concurrency:
Expand All @@ -10,9 +11,6 @@ on:
- main
pull_request:

env:
PERSIST_SANDBOX : "false"

jobs:
test:
runs-on: ubuntu-latest
Expand Down
Loading

0 comments on commit b332dce

Please sign in to comment.