Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(IDX): enable multi-repo checkout #82

Merged
merged 7 commits into from
Dec 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .github/workflows/check_cla_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,6 @@ name: CLA Check Dev

on:
pull_request:
paths:
- .github/workflows/check_cla.yml
- .github/workflows/check_cla_dev.yml
- reusable_workflows/check_cla/**
- reusable_workflows/check_membership/**

jobs:
call-check-cla:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/python-setup/action.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: Python Setup
description: Installs Python and necessary dependencies
inputs:
working-directory:
description: 'The path to the workspace'
required: false
default: ${{ github.workspace }}

runs:
using: composite
Expand All @@ -12,3 +17,4 @@ runs:
- name: Install Dependencies
run: pip install -r requirements.txt
shell: bash
working-directory: ${{ inputs.working-directory }}
4 changes: 4 additions & 0 deletions .github/workflows/repo_policies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,13 @@ jobs:
# Then switch back to this repository to make sure it's run from current
- name: Checkout Original Repository
uses: actions/checkout@v4
with:
path: current-repo # need to specify another path to avoid overwriting the first checkout

- name: Python Setup
uses: ./public-workflows/.github/workflows/python-setup
with:
working-directory: public-workflows

- name: Bot Checks
id: bot-checks
Expand Down
Loading