{"id":24537408,"url":"https://github.com/hpcflow/github-support","last_synced_at":"2026-05-19T17:14:58.621Z","repository":{"id":272279360,"uuid":"916062739","full_name":"hpcflow/github-support","owner":"hpcflow","description":"Miscellaneous support pieces for Github Actions.","archived":false,"fork":false,"pushed_at":"2026-05-12T15:36:53.000Z","size":223,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2026-05-12T17:35:31.025Z","etag":null,"topics":["github-actions"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hpcflow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-01-13T11:39:07.000Z","updated_at":"2026-05-12T16:42:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"d63aadf8-2539-4cf6-a7dc-49a54682359e","html_url":"https://github.com/hpcflow/github-support","commit_stats":null,"previous_names":["hpcflow/github-support"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/hpcflow/github-support","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hpcflow%2Fgithub-support","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hpcflow%2Fgithub-support/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hpcflow%2Fgithub-support/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hpcflow%2Fgithub-support/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hpcflow","download_url":"https://codeload.github.com/hpcflow/github-support/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hpcflow%2Fgithub-support/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33225518,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-19T15:49:41.270Z","status":"ssl_error","status_checked_at":"2026-05-19T15:49:22.917Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["github-actions"],"created_at":"2025-01-22T14:12:32.033Z","updated_at":"2026-05-19T17:14:58.606Z","avatar_url":"https://github.com/hpcflow.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Support Utilities for HpcFlow's/MatFlow's Github Actions\nMiscellaneous support pieces for Github Actions.\n\n## Actions\n\nSimple components that capture common patterns.\n* [`compare`](compare/) \u0026mdash; Compare the output of a program against a string.\n* [`configure-git`](configure-git/) \u0026mdash; Configures [git](https://git-scm.com/) for robotic commits.\n* [`init-cache`](init-cache/) \u0026mdash; Set up dependency caching using a standard pattern. \n* [`setup-poetry`](setup-poetry/) \u0026mdash; Set up [poetry](https://python-poetry.org/) for use.\n\n## Component Workflows\n\nImplementations of templated workflows, separating the templating from what the workflows do.\n* [`benchmark-impl`](.github/workflows/benchmark-impl.yml) \u0026mdash; Benchmark workflow performance.\n  * No special permissions required.\n* [`build-exes-impl`](.github/workflows/build-exes-impl.yml) \u0026mdash; Build executables.\n  * No special permissions required.\n* [`doc-build-impl`](.github/workflows/doc-build-impl.yml) \u0026mdash; Build documentation *for one version*.\n  * No special permissions required _if publication disabled_ (default).\n  * If publication enabled, requires: `pages: write`, `id-token: write`  \n    This is to allow publication of a site to be done.\n* [`release-impl`](.github/workflows/release-impl.yml) \u0026mdash; Create a release.\n  * Permissions: `contents: write`, `id-token: write`  \n    This is to allow commits to be made to make release tags, etc. (Note that appropriate secrets must also be supplied for some operations.)\n* [`test-impl`](.github/workflows/test-impl.yml) \u0026mdash; Run the test suite.\n  * Permissions: `contents: write`, `id-token: write`  \n    This is to allow the \"commit hook\" that runs [black](https://github.com/psf/black) to write its changes.\n* [`test-pre-python-impl`](.github/workflows/test-pre-python-impl.yml) \u0026mdash; Run the test suite with a pre-release version of Python.\n  * No special permissions required.\n\nThese workflows use the actions listed above.\n\n## Support Scripts/Files\n\nFiles used by other parts of this repository, principally for testing purposes.\n* [`problem-matchers/sphinx.json`](problem-matchers/sphinx.json) \u0026mdash; Originally evolved from something in Python's own code, used to pick errors out of [Sphinx](https://www.sphinx-doc.org/en/master/)'s (voluminous) output and highlight it. Used by `doc-build-impl`.\n* [`scripts/get_invoc_cmd.py`](scripts/get_invoc_cmd.py) \u0026mdash; Test harness: non-interactive invocation.\n* [`scripts/get_invoc_cmd_interactive.py`](scripts/get_invoc_cmd_interactive.py) \u0026mdash; Test harness: interactive invocation (not Windows).\n* [`scripts/test_direct_sub_python_script.py`](scripts/test_direct_sub_python_script.py) \u0026mdash; Test harness: call as library.\n* [`scripts/test_direct_sub_jupyter_notebook.ipynb`](scripts/test_direct_sub_jupyter_notebook.ipynb) \u0026mdash; Test harness: call from [ipython](https://ipython.org/).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhpcflow%2Fgithub-support","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhpcflow%2Fgithub-support","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhpcflow%2Fgithub-support/lists"}