{"id":24503613,"url":"https://github.com/plus3it/actions-workflows","last_synced_at":"2026-04-27T22:00:49.276Z","repository":{"id":70263081,"uuid":"592359864","full_name":"plus3it/actions-workflows","owner":"plus3it","description":"Repository of reusable workflows","archived":false,"fork":false,"pushed_at":"2026-04-20T07:15:07.000Z","size":314,"stargazers_count":0,"open_issues_count":2,"forks_count":6,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-04-21T10:07:45.250Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/plus3it.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"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":"2023-01-23T15:09:27.000Z","updated_at":"2026-04-13T07:25:14.000Z","dependencies_parsed_at":"2025-11-27T10:08:50.808Z","dependency_job_id":null,"html_url":"https://github.com/plus3it/actions-workflows","commit_stats":null,"previous_names":[],"tags_count":22,"template":false,"template_full_name":"plus3it/repo-template","purl":"pkg:github/plus3it/actions-workflows","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plus3it%2Factions-workflows","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plus3it%2Factions-workflows/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plus3it%2Factions-workflows/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plus3it%2Factions-workflows/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/plus3it","download_url":"https://codeload.github.com/plus3it/actions-workflows/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/plus3it%2Factions-workflows/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32356602,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"ssl_error","status_checked_at":"2026-04-27T20:07:00.910Z","response_time":128,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":[],"created_at":"2025-01-21T23:17:52.061Z","updated_at":"2026-04-27T22:00:49.271Z","avatar_url":"https://github.com/plus3it.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# actions-workflows\nRepository of plus3it reusable worfklows for GitHub Actions.\n\nThis project publishes reusable workflows for the Plus3IT organization. All reusable\nworkflows are located in the directory [.github/workflows](.github/workflows).\n\n* [lint](.github/workflows/lint.yml)\n* [test](.github/workflows/test.yml)\n* [release](.github/workflows/release.yml)\n\nThe release logic is also available as a composite action. Only difference is that\nthe action does not execute the lint and test workflows.\n\n* [release action](.github/actions/release)\n\nAny workflow file that is not prefixed with `local-` is provided as a reusable\nworkflow. The `local-` workflow files are the workflows in use by _this_ project,\nthemselves using the reusable workflows. The `local-` workflows are also examples\nof how the reusable workflows are expected to be invoked.\n\n## Reusable workflows\n\n### `lint`\n\nInputs:\n\n* `tardigradelint-target`: Controls which tardigrade-ci Makefile target to run.\n  Defaults to `lint`.\n\nAn example of calling the reusable `lint` workflow:\n\n```\nname: Run lint and static analyis checks\non:\n  pull_request:\n\n# Cancel other lint workflows when source is updated\nconcurrency:\n  group: lint-${{ github.head_ref || github.ref }}\n  cancel-in-progress: true\n\njobs:\n  lint:\n    uses: plus3it/actions-workflows/.github/workflows/lint.yml@v1\n```\n\n### `test`\n\nInputs:\n\n* `mockstacktest-enable`: Controls whether to run the mockstacktest job. Defaults\n  to `true`.\n* `prerelease`: Marks the GitHub Release as a prerelease. Defaults to `false`.\n* `draft`: Creates the GitHub Release as a draft. Defaults to `false`.\n\nAn example of calling the reusable `test` workflow:\n\n```\nname: Run test jobs\non:\n  pull_request:\n\n# Cancel other test workflows when source is updated\nconcurrency:\n  group: test-${{ github.head_ref || github.ref }}\n  cancel-in-progress: true\n\njobs:\n  test:\n    uses: plus3it/actions-workflows/.github/workflows/test.yml@v1\n```\n\n### `release`\n\nInputs:\n\n* `mockstacktest-enable`: Controls whether to run the mockstacktest job. Defaults\n  to `true`.\n\nSecrets:\n  * `release-token`: Required. Token with permissions to create GitHub Releases.\n\nAn example of calling the reusable `release` workflow:\n\n```\nname: Create GitHub Release\n\non:\n  # Run on demand\n  workflow_dispatch:\n\n  # Run on push to main when .bumpversion.cfg version is updated\n  push:\n    branches:\n      - main\n    paths:\n      - .bumpversion.cfg\n\njobs:\n  release:\n    uses: plus3it/actions-workflows/.github/workflows/release.yml@v1\n    secrets:\n      release-token: ${{ secrets.GH_RELEASES_TOKEN }}\n```\n\nAn example of using the composite `release` action:\n\nInputs:\n\n* `release-files`: Optional. Newline-delimited globs of assets to upload.\n* `prerelease`: Optional. Marks the GitHub Release as a prerelease. Defaults to `false`.\n* `draft`: Optional. Creates the GitHub Release as a draft. Defaults to `false`.\n* `release-token`: Required. Token with permissions to create GitHub Releases.\n\n```\nname: Create GitHub Release\n\non:\n  # Run on demand\n  workflow_dispatch:\n\n  # Run on push to main when .bumpversion.cfg version is updated\n  push:\n    branches:\n      - main\n    paths:\n      - .bumpversion.cfg\n\njobs:\n  release:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: plus3it/actions-workflows/.github/actions/release@v1\n        with:\n          release-token: ${{ secrets.GH_RELEASES_TOKEN }}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplus3it%2Factions-workflows","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fplus3it%2Factions-workflows","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fplus3it%2Factions-workflows/lists"}