-
-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
302 changed files
with
19,461 additions
and
10,947 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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' | ||
|
@@ -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' | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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' | ||
|
@@ -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' | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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' | ||
|
@@ -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' | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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 | ||
|
@@ -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' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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")), | ||
|
Oops, something went wrong.