diff --git a/.github/workflows/claude-code-review.yml b/.github/workflows/claude-code-review.yml new file mode 100644 index 0000000..b5e8cfd --- /dev/null +++ b/.github/workflows/claude-code-review.yml @@ -0,0 +1,44 @@ +name: Claude Code Review + +on: + pull_request: + types: [opened, synchronize, ready_for_review, reopened] + # Optional: Only run on specific file changes + # paths: + # - "src/**/*.ts" + # - "src/**/*.tsx" + # - "src/**/*.js" + # - "src/**/*.jsx" + +jobs: + claude-review: + # Optional: Filter by PR author + # if: | + # github.event.pull_request.user.login == 'external-contributor' || + # github.event.pull_request.user.login == 'new-developer' || + # github.event.pull_request.author_association == 'FIRST_TIME_CONTRIBUTOR' + + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: read + issues: read + id-token: write + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 1 + + - name: Run Claude Code Review + id: claude-review + uses: anthropics/claude-code-action@v1 + with: + claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} + plugin_marketplaces: 'https://github.com/anthropics/claude-code.git' + plugins: 'code-review@claude-code-plugins' + prompt: '/code-review:code-review ${{ github.repository }}/pull/${{ github.event.pull_request.number }}' + # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md + # or https://code.claude.com/docs/en/cli-reference for available options + diff --git a/.github/workflows/claude.yml b/.github/workflows/claude.yml new file mode 100644 index 0000000..d300267 --- /dev/null +++ b/.github/workflows/claude.yml @@ -0,0 +1,50 @@ +name: Claude Code + +on: + issue_comment: + types: [created] + pull_request_review_comment: + types: [created] + issues: + types: [opened, assigned] + pull_request_review: + types: [submitted] + +jobs: + claude: + if: | + (github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) || + (github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) || + (github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) || + (github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude'))) + runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: read + issues: read + id-token: write + actions: read # Required for Claude to read CI results on PRs + steps: + - name: Checkout repository + uses: actions/checkout@v4 + with: + fetch-depth: 1 + + - name: Run Claude Code + id: claude + uses: anthropics/claude-code-action@v1 + with: + claude_code_oauth_token: ${{ secrets.CLAUDE_CODE_OAUTH_TOKEN }} + + # This is an optional setting that allows Claude to read CI results on PRs + additional_permissions: | + actions: read + + # Optional: Give a custom prompt to Claude. If this is not specified, Claude will perform the instructions specified in the comment that tagged it. + # prompt: 'Update the pull request description to include a summary of changes.' + + # Optional: Add claude_args to customize behavior and configuration + # See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md + # or https://code.claude.com/docs/en/cli-reference for available options + # claude_args: '--allowed-tools Bash(gh pr:*)' + diff --git a/NAMESPACE b/NAMESPACE index 89a3f79..076e863 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -89,7 +89,6 @@ importFrom(kit,fpmin) importFrom(kit,iif) importFrom(leaderCluster,leaderCluster) importFrom(mirai,daemons) -importFrom(mirai,everywhere) importFrom(mirai,mirai_map) importFrom(progress,progress_bar) importFrom(sf,st_as_sf) diff --git a/R/assignment.R b/R/assignment.R index 53662de..cb3d84b 100644 --- a/R/assignment.R +++ b/R/assignment.R @@ -232,7 +232,7 @@ #' @importFrom kit fpmin fpmax #' @importFrom igraph V graph_from_data_frame delete_vertex_attr igraph_options distances shortest_paths vcount ecount #' @importFrom geodist geodist_vec -#' @importFrom mirai mirai_map daemons everywhere +#' @importFrom mirai mirai_map daemons #' @importFrom progress progress_bar run_assignment <- function(graph_df, od_matrix_long, directed = FALSE, @@ -661,13 +661,10 @@ run_assignment <- function(graph_df, od_matrix_long, if(!is.finite(nthreads) || nthreads <= 1L) { res$final_flows <- run_assignment_core(seq_len(N), verbose, TRUE) } else { - envir <- environment() # Split OD matrix in equal parts ind <- sample.int(as.integer(nthreads), N, replace = TRUE) ind_list <- gsplit(g = if(is_aon) sort(ind) else ind) # Since AoN should reduce calls to shortest_paths() daemons(n = nthreads - 1L) - # Pass current environment dynamically - everywhere({}, envir) # Now run the map in the background res_other <- mirai_map(ind_list[-1L], run_assignment_core) # Runs the first instance in the current session @@ -697,7 +694,7 @@ run_assignment <- function(graph_df, od_matrix_long, } } res$final_flows <- final_flows - rm(res_other, envir, ind_list, final_flows) + rm(res_other, ind_list, final_flows) } if(anyNA(od_pairs)) {