{"id":51226619,"url":"https://github.com/ducttape-infra/machinefile-executor-action","last_synced_at":"2026-06-28T12:03:12.271Z","repository":{"id":280104552,"uuid":"940992582","full_name":"ducttape-infra/machinefile-executor-action","owner":"ducttape-infra","description":"This action allows you to run `Dockerfile`/`Containerfile` commands directly on a local or remote host system without using Docker or Podman","archived":false,"fork":false,"pushed_at":"2025-08-24T06:05:35.000Z","size":29,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-06-25T04:11:25.409Z","etag":null,"topics":["action","containerfile","docker","dockerfile","github-actions","podman"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ducttape-infra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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},"funding":{"github":["gbraad"],"patreon":"gbraad","liberapay":"gbraad","custom":["https://paypal.me/gbraad","https://www.buymeacoffee.com/gbraad"]}},"created_at":"2025-03-01T08:11:23.000Z","updated_at":"2026-06-25T02:02:00.000Z","dependencies_parsed_at":"2025-03-01T11:35:42.408Z","dependency_job_id":null,"html_url":"https://github.com/ducttape-infra/machinefile-executor-action","commit_stats":null,"previous_names":["gbraad-redhat/machinefile-github-action","gbraad-actions/machinefile-executor-action","machinefile/machinefile-executor-action","ducttape-infra/machinefile-executor-action"],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/ducttape-infra/machinefile-executor-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ducttape-infra%2Fmachinefile-executor-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ducttape-infra%2Fmachinefile-executor-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ducttape-infra%2Fmachinefile-executor-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ducttape-infra%2Fmachinefile-executor-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ducttape-infra","download_url":"https://codeload.github.com/ducttape-infra/machinefile-executor-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ducttape-infra%2Fmachinefile-executor-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34887328,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-28T02:00:05.809Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["action","containerfile","docker","dockerfile","github-actions","podman"],"created_at":"2026-06-28T12:03:11.659Z","updated_at":"2026-06-28T12:03:12.263Z","avatar_url":"https://github.com/ducttape-infra.png","language":null,"funding_links":["https://github.com/sponsors/gbraad","https://patreon.com/gbraad","https://liberapay.com/gbraad","https://paypal.me/gbraad","https://www.buymeacoffee.com/gbraad"],"categories":[],"sub_categories":[],"readme":"Machinefile executor GitHub Action\r\n==================================\r\n\r\n[![Machinefile test](https://github.com/gbraad-actions/machinefile-executor-action/actions/workflows/build-process.yml/badge.svg)](https://github.com/gbraad-actions/machinefile-executor-action/actions/workflows/build-process.yml)\r\n\r\nThis action uses the [Machinefile executor](https://github.com/gbraad-redhat/machinefile) to run `Dockerfile`/`Containerfile` commands directly on the host system without using Docker, Podman or any other container engine. It's useful for executing build commands in a predictable environment or setting up development tools.\r\n\r\n\r\n## Usage\r\n\r\n```yaml\r\nsteps:\r\n- uses: actions/checkout@v3\r\n\r\n- name: Run Machinefile commands\r\n  uses: gbraad-actions/machinefile-executor-action@v3\r\n  with:\r\n    containerfile: 'Containerfile'  # or path to your Containerfile\r\n    context: '.'  # Build context directory\r\n```\r\n\r\n\r\n## Inputs\r\n\r\n| Input         | Description                              | Required | Default        |\r\n|---------------|------------------------------------------|----------|----------------|\r\n| containerfile | Path to the Dockerfile/Containerfile     | Yes      | 'Containerfile'|\r\n| context       | Directory to use as build context        | Yes      | '.'            |\r\n| arguments     | Additional arguments to pass             | No       | ''             |\r\n| binarypath    | Override the path of executor to use     | No       | ''             |\r\n| version       | Version of executor binary to download   | No       | '0.5.0'        |\r\n\r\n\r\n## Example\r\n\r\nHere's an example workflow that uses the Machinefile Executor to set up a development environment:\r\n\r\n```yaml\r\nname: Build with Containerfile\r\n\r\non:\r\n  push:\r\n    branches: [ main ]\r\n  pull_request:\r\n    branches: [ main ]\r\n\r\njobs:\r\n  build:\r\n    runs-on: ubuntu-latest\r\n    steps:\r\n    - uses: actions/checkout@v3\r\n    \r\n    - name: Run Dockerfile commands\r\n      uses: gbraad-actions/machinefile-executor-action@v3\r\n      with:\r\n        containerfile: 'containers/Containerfile-devtools'\r\n        context: '.'\r\n        arguments: --arg=USER=gbraad\r\n        \r\n    - name: Run build tests\r\n      run: |\r\n        # Your build commands here\r\n        make test\r\n```\r\n\r\n\r\n### Local runner\r\n\r\n```yaml\r\n- name: Setup with local runner\r\n  uses: gbraad-actions/machinefile-executor-action@main\r\n  with:\r\n    containerfile: Containerfile\r\n    context: .\r\n    runner: local\r\n```\r\n\r\n### Podman runner\r\n\r\n```yaml\r\n- name: Setup with Podman runner\r\n  uses: gbraad-actions/machinefile-executor-action@main\r\n  with:\r\n    containerfile: Containerfile\r\n    context: .\r\n    runner: podman\r\n    podman-name: my-container\r\n    podman-connection: my-connection\r\n```\r\n\r\n### SSH runner\r\n\r\n```yaml\r\n- name: Setup with SSH runner\r\n  uses: gbraad-actions/machinefile-executor-action@main\r\n  with:\r\n    containerfile: Containerfile\r\n    context: .\r\n    runner: ssh\r\n    ssh-host: example.com\r\n    ssh-user: user\r\n    ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}\r\n    args: |\r\n      USER=gbraad\r\n      GROUP=wheel\r\n```\r\n\r\n\r\n## License\r\n\r\n[MIT License](LICENSE)\r\n\r\n\r\n## Author\r\n\r\n| [![\"Gerard Braad\"](http://gravatar.com/avatar/e466994eea3c2a1672564e45aca844d0.png?s=60)](http://gbraad.nl \"Gerard Braad \u003cme@gbraad.nl\u003e\") |\r\n|---|\r\n| [@gbraad](https://gbraad.nl/social) |\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fducttape-infra%2Fmachinefile-executor-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fducttape-infra%2Fmachinefile-executor-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fducttape-infra%2Fmachinefile-executor-action/lists"}