{"id":19120693,"url":"https://github.com/waylonwalker/kedro-action","last_synced_at":"2026-03-03T21:32:10.336Z","repository":{"id":49527359,"uuid":"245280975","full_name":"WaylonWalker/kedro-action","owner":"WaylonWalker","description":"A GitHub Action to lint, test, build-docs, package, and run your kedro pipelines. Supports any Python version you'll give it (that is also supported by pyenv).","archived":false,"fork":false,"pushed_at":"2025-02-16T07:46:58.000Z","size":260,"stargazers_count":20,"open_issues_count":24,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-15T21:20:00.010Z","etag":null,"topics":["actions","dataengineering","datapipeline","kedro"],"latest_commit_sha":null,"homepage":"","language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/WaylonWalker.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"WaylonWalker","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"custom":null}},"created_at":"2020-03-05T22:32:26.000Z","updated_at":"2025-02-01T18:56:51.000Z","dependencies_parsed_at":"2023-12-02T19:25:32.387Z","dependency_job_id":"38a2a3c1-ec3f-4cac-8d16-8edd5913dcc6","html_url":"https://github.com/WaylonWalker/kedro-action","commit_stats":{"total_commits":29,"total_committers":1,"mean_commits":29.0,"dds":0.0,"last_synced_commit":"7c638882990e09cfdaaefed6eda80b032fbb1d0d"},"previous_names":[],"tags_count":5,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WaylonWalker%2Fkedro-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WaylonWalker%2Fkedro-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WaylonWalker%2Fkedro-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/WaylonWalker%2Fkedro-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/WaylonWalker","download_url":"https://codeload.github.com/WaylonWalker/kedro-action/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252531975,"owners_count":21763314,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["actions","dataengineering","datapipeline","kedro"],"created_at":"2024-11-09T05:14:43.681Z","updated_at":"2026-03-03T21:32:10.286Z","avatar_url":"https://github.com/WaylonWalker.png","language":"Shell","funding_links":["https://github.com/sponsors/WaylonWalker"],"categories":[],"sub_categories":[],"readme":"# ![Kedro-Action](artwork/Kedro-Action.png)\n\nA GitHub Action to `lint`, `test`, `build-docs`, `package`, `static-viz`, and `run` your [kedro](https://github.com/quantumblacklabs/kedro) pipelines. Supports any Python version you'll give it (that is also supported by [pyenv](https://github.com/pyenv/pyenv)). \n\nInspired by [mariamrf/py-package-publish-action](https://github.com/mariamrf/py-package-publish-action) and [crazy-max/ghaction-github-pages](https://github.com/crazy-max/ghaction-github-pages).\n\n# Example\n\nCheck out [WaylonWalker/default-kedro157](https://github.com/WaylonWalker/default-kedro157/) for a working example of the action.\n\n[![Static Viz](artwork/kedro-static-viz.png)](https://default-kedro-157.waylonwalker.com/)\n\n[![Docs](artwork/docs.png)](https://default-kedro-157-docs.netlify.com/)\n\n[![Test report](artwork/test-report.png)](https://default-kedro-157-test.netlify.com/)\n\n# Use\n\n## Pre-requisits\n\nIn order for the Action to have access to the code, you must use the actions/checkout@master job before it. See the example below.\n\nFor kedro-action to commit results back to the `kedro-action` branch you must supply a GitHub Personal Access Token through the secrets manager.  See [this link](https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line) for more help.\n\n## Inputs\n\n* python_version:\n    * description: a Python version that is supported by pyenv\n    * default: '3.7.0'\n* should_lint:\n    * description: runs `kedro lint`\n    * default: true\n* should_test:\n    * description: runs `kedro test`\n    * default: true\n* should_build_docs:\n    * description: runs `kedro build-docs`\n    * default: true\n* should_package:\n    * description: runs `kedro package`\n    * default: true\n* should_run:\n    * description: runs `kedro run`\n    * default: false\n* should_viz:\n    * description: creates a static site built on gatsby based on `kedro viz --save-pipeline pipeline.json`\n    * default: true\n* deploy_branch\n   * branch to deploy static site to\n   * default: kedro-action\n* github_pat\n   * description: github personal access token\n   * for help: https://help.github.com/en/github/authenticating-to-github/creating-a-personal-access-token-for-the-command-line\n   * default: null\n* verbose\n   * description: prints extra information for debugging\n   * default: false\n\n## Example Workflow\n\n``` yaml\nname: kedro\n\non:\n  push:\n    branches:\n      - master\n\njobs:\n  kedro:\n    runs-on: ubuntu-latest\n    steps:\n    - uses: actions/checkout@master\n    - name: Kedro\n      uses: WaylonWalker/kedro-action@2.0.0\n      with:\n        GITHUB_PAT: ${{ secrets.GITHUB_PAT }} # required for push to kedro-action branch\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwaylonwalker%2Fkedro-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwaylonwalker%2Fkedro-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwaylonwalker%2Fkedro-action/lists"}