Skip to content

Commit

Permalink
Merge branch 'main' into gnm
Browse files Browse the repository at this point in the history
  • Loading branch information
krlmlr committed Jan 9, 2025
2 parents 80d7e94 + df4f411 commit cdcb0f9
Show file tree
Hide file tree
Showing 302 changed files with 19,461 additions and 10,947 deletions.
5 changes: 4 additions & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,12 @@
^R/revdep\.R$
^compile_commands\.json$
^\.cache$
^rchk$
^man/dot-igraph.progress\.Rd$
^man/dot-igraph.status\.Rd$
^man/dot-extract_constructor_and_modifiers\.Rd$
^man/dot-apply_modifiers\.Rd$
^man/handle_vertex_type_arg\.Rd$
^rchk$
^vendor\.sh$
^vendor-one\.sh$
^patch$
50 changes: 50 additions & 0 deletions .github/workflows/each.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
# Helper workflow to trigger rcc for each commit on a branch

on:
push:
branches:
- each-*

name: each-rcc

jobs:
each-rcc:
runs-on: ubuntu-24.04
outputs:
sha: ${{ steps.commit.outputs.sha }}
versions-matrix: ${{ steps.versions-matrix.outputs.matrix }}
dep-suggests-matrix: ${{ steps.dep-suggests-matrix.outputs.matrix }}

name: "Trigger rcc workflow for each commit"

# Begin custom: services
# End custom: services

steps:
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}
fetch-depth: 0

- name: Enumerate all commits from the repository's main branch
env:
GH_TOKEN: ${{ github.token }}
run: |
# Get name of main branch of repository
# origin/HEAD isn't known here
main=$(git remote show origin | grep 'HEAD branch' | cut -d' ' -f5)
commits=$(git log --reverse --pretty=format:"%H" origin/${main}.. --)
echo $commits
# Run workflow for each commit where the status of the rcc workflow isn't "pending" or "success"
for commit in $commits; do
echo $commit
# Get first status of the workflow with the name "rcc"
status=$(gh api repos/{owner}/{repo}/commits/${commit}/statuses | jq -r '.[] | select(.context == "rcc") | .state' | head -n 1)
echo $status
if [[ "$status" != "pending" && "$status" != "success" ]]; then
echo "Running rcc for commit $commit"
gh workflow run rcc -f ref=$commit -r ${{ github.ref }}
fi
done
shell: bash
66 changes: 34 additions & 32 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ message: 'To cite package "igraph" in publications use:'
type: software
license: GPL-2.0-or-later
title: 'igraph: Network Analysis and Visualization'
version: 2.1.2
version: 2.1.3
identifiers:
- type: doi
value: 10.32614/CRAN.package.igraph
Expand Down Expand Up @@ -92,8 +92,8 @@ references:
given-names: Daniel
- family-names: Müller
given-names: Kirill
year: '2024'
notes: R package version 2.1.2
year: '2025'
notes: R package version 2.1.3
doi: 10.5281/zenodo.7682609
url: https://CRAN.R-project.org/package=igraph
- type: software
Expand All @@ -105,7 +105,7 @@ references:
institution:
name: R Foundation for Statistical Computing
address: Vienna, Austria
year: '2024'
year: '2025'
- type: software
title: 'R: A Language and Environment for Statistical Computing'
notes: Depends
Expand All @@ -115,7 +115,7 @@ references:
institution:
name: R Foundation for Statistical Computing
address: Vienna, Austria
year: '2024'
year: '2025'
version: '>= 3.5.0'
- type: software
title: cli
Expand All @@ -127,7 +127,7 @@ references:
- family-names: Csárdi
given-names: Gábor
email: [email protected]
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.cli
- type: software
title: graphics
Expand All @@ -138,7 +138,7 @@ references:
institution:
name: R Foundation for Statistical Computing
address: Vienna, Austria
year: '2024'
year: '2025'
- type: software
title: grDevices
abstract: 'R: A Language and Environment for Statistical Computing'
Expand All @@ -148,7 +148,7 @@ references:
institution:
name: R Foundation for Statistical Computing
address: Vienna, Austria
year: '2024'
year: '2025'
- type: software
title: lifecycle
abstract: 'lifecycle: Manage the Life Cycle of your Package Functions'
Expand All @@ -163,7 +163,7 @@ references:
given-names: Hadley
email: [email protected]
orcid: https://orcid.org/0000-0003-4757-117X
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.lifecycle
- type: software
title: magrittr
Expand All @@ -178,7 +178,7 @@ references:
- family-names: Wickham
given-names: Hadley
email: [email protected]
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.magrittr
- type: software
title: Matrix
Expand All @@ -197,7 +197,7 @@ references:
- family-names: Jagan
given-names: Mikael
orcid: https://orcid.org/0000-0002-3542-2938
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.Matrix
- type: software
title: pkgconfig
Expand All @@ -208,7 +208,7 @@ references:
authors:
- family-names: Csárdi
given-names: Gábor
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.pkgconfig
version: '>= 2.0.0'
- type: software
Expand All @@ -224,7 +224,7 @@ references:
- family-names: Wickham
given-names: Hadley
email: [email protected]
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.rlang
- type: software
title: stats
Expand All @@ -235,7 +235,7 @@ references:
institution:
name: R Foundation for Statistical Computing
address: Vienna, Austria
year: '2024'
year: '2025'
- type: software
title: utils
abstract: 'R: A Language and Environment for Statistical Computing'
Expand All @@ -245,7 +245,7 @@ references:
institution:
name: R Foundation for Statistical Computing
address: Vienna, Austria
year: '2024'
year: '2025'
- type: software
title: vctrs
abstract: 'vctrs: Vector Helpers'
Expand All @@ -262,7 +262,7 @@ references:
- family-names: Vaughan
given-names: Davis
email: [email protected]
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.vctrs
- type: software
title: ape
Expand Down Expand Up @@ -334,6 +334,8 @@ references:
- family-names: Louvel
given-names: Guillaume
orcid: https://orcid.org/0000-0002-7745-0785
- family-names: Marotta
given-names: Federico
- family-names: Marcon
given-names: Eric
orcid: https://orcid.org/0000-0002-5249-321X
Expand All @@ -358,7 +360,7 @@ references:
given-names: Damien
name-particle: de
orcid: https://orcid.org/0000-0001-9532-5251
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.ape
version: '>= 5.7-0.1'
- type: software
Expand All @@ -374,7 +376,7 @@ references:
orcid: https://orcid.org/0000-0001-7098-9676
- family-names: Chang
given-names: Winston
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.callr
- type: software
title: decor
Expand All @@ -393,7 +395,7 @@ references:
- family-names: Hester
given-names: Jim
orcid: https://orcid.org/0000-0002-2739-7082
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.decor
- type: software
title: digest
Expand All @@ -406,7 +408,7 @@ references:
given-names: Dirk
email: [email protected]
orcid: https://orcid.org/0000-0001-6419-907X
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.digest
- type: software
title: igraphdata
Expand All @@ -418,7 +420,7 @@ references:
- family-names: Csardi
given-names: Gabor
email: [email protected]
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.igraphdata
- type: software
title: knitr
Expand All @@ -431,7 +433,7 @@ references:
given-names: Yihui
email: [email protected]
orcid: https://orcid.org/0000-0003-0645-5666
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.knitr
- type: software
title: rgl
Expand All @@ -446,7 +448,7 @@ references:
- family-names: Adler
given-names: Daniel
email: [email protected]
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.rgl
version: '>= 1.3.14'
- type: software
Expand Down Expand Up @@ -491,7 +493,7 @@ references:
given-names: Richard
email: [email protected]
orcid: https://orcid.org/0000-0003-3925-190X
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.rmarkdown
- type: software
title: scales
Expand All @@ -509,7 +511,7 @@ references:
orcid: https://orcid.org/0000-0002-5147-4711
- family-names: Seidel
given-names: Dana
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.scales
- type: software
title: stats4
Expand All @@ -520,7 +522,7 @@ references:
institution:
name: R Foundation for Statistical Computing
address: Vienna, Austria
year: '2024'
year: '2025'
- type: software
title: tcltk
abstract: 'R: A Language and Environment for Statistical Computing'
Expand All @@ -530,7 +532,7 @@ references:
institution:
name: R Foundation for Statistical Computing
address: Vienna, Austria
year: '2024'
year: '2025'
- type: software
title: testthat
abstract: 'testthat: Unit Testing for R'
Expand All @@ -541,7 +543,7 @@ references:
- family-names: Wickham
given-names: Hadley
email: [email protected]
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.testthat
- type: software
title: vdiffr
Expand All @@ -566,7 +568,7 @@ references:
- family-names: Lise
given-names: Vaudor
email: [email protected]
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.vdiffr
- type: software
title: withr
Expand All @@ -591,7 +593,7 @@ references:
email: [email protected]
- family-names: Chang
given-names: Winston
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.withr
- type: software
title: graph
Expand All @@ -611,7 +613,7 @@ references:
given-names: Jeff
- family-names: Shannon
given-names: Paul
year: '2024'
year: '2025'
doi: 10.18129/B9.bioc.graph
- type: software
title: cpp11
Expand All @@ -630,7 +632,7 @@ references:
- family-names: François
given-names: Romain
orcid: https://orcid.org/0000-0002-2444-4226
year: '2024'
year: '2025'
doi: 10.32614/CRAN.package.cpp11
version: '>= 0.5.0'

2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: igraph
Title: Network Analysis and Visualization
Version: 2.1.2.9002
Version: 2.1.3.9001
Authors@R: c(
person("Gábor", "Csárdi", , "[email protected]", role = "aut",
comment = c(ORCID = "0000-0001-7098-9676")),
Expand Down
Loading

0 comments on commit cdcb0f9

Please sign in to comment.