{"id":13566994,"url":"https://github.com/magefile/mage-action","last_synced_at":"2025-04-09T11:11:30.800Z","repository":{"id":37828974,"uuid":"210177082","full_name":"magefile/mage-action","owner":"magefile","description":"GitHub Action for Mage","archived":false,"fork":false,"pushed_at":"2025-03-30T12:12:23.000Z","size":12012,"stargazers_count":33,"open_issues_count":1,"forks_count":7,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-30T12:22:58.483Z","etag":null,"topics":["actions","buildscript","github-actions","golang","mage","make"],"latest_commit_sha":null,"homepage":"https://github.com/marketplace/actions/mage-action","language":"TypeScript","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/magefile.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":".github/CONTRIBUTING.md","funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":".github/SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null},"funding":{"github":"crazy-max","custom":"https://www.paypal.me/crazyws"}},"created_at":"2019-09-22T16:16:35.000Z","updated_at":"2025-03-30T12:07:04.000Z","dependencies_parsed_at":"2024-04-17T13:32:12.693Z","dependency_job_id":"3559625a-ff42-4e6b-a336-ba5218577792","html_url":"https://github.com/magefile/mage-action","commit_stats":{"total_commits":461,"total_committers":6,"mean_commits":76.83333333333333,"dds":0.5336225596529285,"last_synced_commit":"57951a15dc7a0a0e3738efe30429d94892d6be45"},"previous_names":[],"tags_count":24,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magefile%2Fmage-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magefile%2Fmage-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magefile%2Fmage-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magefile%2Fmage-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/magefile","download_url":"https://codeload.github.com/magefile/mage-action/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248027411,"owners_count":21035594,"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","buildscript","github-actions","golang","mage","make"],"created_at":"2024-08-01T13:02:21.111Z","updated_at":"2025-04-09T11:11:30.765Z","avatar_url":"https://github.com/magefile.png","language":"TypeScript","readme":"\u003cp align=\"center\"\u003e\n  \u003cimg alt=\"Mage Logo\" src=\"https://avatars2.githubusercontent.com/u/32144377?s=200\u0026v=4\" height=\"200\" /\u003e\n  \u003ch3 align=\"center\"\u003eMage Action\u003c/h3\u003e\n  \u003cp align=\"center\"\u003e\u003ca href=\"https://github.com/features/actions\"\u003eGitHub Action\u003c/a\u003e for Mage\u003c/p\u003e\n  \u003cp align=\"center\"\u003e\n    \u003ca href=\"https://github.com/magefile/mage-action/releases/latest\"\u003e\u003cimg alt=\"GitHub release\" src=\"https://img.shields.io/github/release/magefile/mage-action.svg?logo=github\u0026style=flat-square\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/marketplace/actions/mage-action\"\u003e\u003cimg alt=\"GitHub marketplace\" src=\"https://img.shields.io/badge/marketplace-mage--action-blue?logo=github\u0026style=flat-square\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/magefile/mage-action/actions?workflow=test\"\u003e\u003cimg alt=\"Test workflow\" src=\"https://img.shields.io/github/actions/workflow/status/magefile/mage-action/test.yml?branch=master\u0026label=test\u0026logo=github\u0026style=flat-square\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://codecov.io/gh/magefile/mage-action\"\u003e\u003cimg alt=\"Codecov\" src=\"https://img.shields.io/codecov/c/github/magefile/mage-action?logo=codecov\u0026style=flat-square\"\u003e\u003c/a\u003e\n    \u003ca href=\"https://github.com/sponsors/crazy-max\"\u003e\u003cimg src=\"https://img.shields.io/badge/sponsor-crazy--max-181717.svg?logo=github\u0026style=flat-square\" alt=\"Become a sponsor\"\u003e\u003c/a\u003e\n  \u003c/p\u003e\n\u003c/p\u003e\n\n___\n\n![Mage Action](.github/mage-action.png)\n\n* [Usage](#usage)\n* [Customizing](#customizing)\n  * [inputs](#inputs)\n* [License](#license)\n\n## Usage\n\n### Quick start\n\n```yaml\nname: mage\n\non:\n  pull_request:\n  push:\n\njobs:\n  mage:\n    runs-on: ubuntu-latest\n    steps:\n      -\n        name: Checkout\n        uses: actions/checkout@v4\n      -\n        name: Set up Go\n        uses: actions/setup-go@v5\n      -\n        name: Run Mage\n        uses: magefile/mage-action@v3\n        with:\n          version: latest\n          args: build\n```\n\n### Install Only\n\n```yaml\nname: mage\n\non:\n  pull_request:\n  push:\n\njobs:\n  mage:\n    runs-on: ubuntu-latest\n    steps:\n      -\n        name: Checkout\n        uses: actions/checkout@v4\n      -\n        name: Set up Go\n        uses: actions/setup-go@v5\n      -\n        name: Run Mage\n        uses: magefile/mage-action@v3\n        with:\n          install-only: true\n      -\n        name: Show Mage version\n        run: mage --version\n```\n\n## Customizing\n\n### inputs\n\nThe following inputs can be used as `step.with` keys:\n\n| Name           | Type   | Default  | Description                                  |\n|----------------|--------|----------|----------------------------------------------|\n| `version`      | String | `latest` | Mage version. Example: `v1.9.0`              |\n| `args`         | String |          | Arguments to pass to Mage                    |\n| `workdir`      | String | `.`      | Working directory (below repository root)    |\n| `install-only` | Bool   | `false`  | Just install Mage                            |\n| `cache-binary` | Bool   | `true`   | Cache binary to GitHub Actions cache backend |\n\n## License\n\nMIT. See `LICENSE` for more details.\n","funding_links":["https://github.com/sponsors/crazy-max","https://www.paypal.me/crazyws"],"categories":["TypeScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagefile%2Fmage-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmagefile%2Fmage-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagefile%2Fmage-action/lists"}