{"id":19472379,"url":"https://github.com/aboutbits/github-actions-vercel","last_synced_at":"2025-09-19T05:03:48.562Z","repository":{"id":180777116,"uuid":"665010750","full_name":"aboutbits/github-actions-vercel","owner":"aboutbits","description":"GitHub Actions - Vercel","archived":false,"fork":false,"pushed_at":"2025-09-01T10:54:46.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-19T05:02:40.048Z","etag":null,"topics":["github-actions","vercel"],"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/aboutbits.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}},"created_at":"2023-07-11T08:39:56.000Z","updated_at":"2025-09-01T10:54:49.000Z","dependencies_parsed_at":"2023-12-22T22:25:56.067Z","dependency_job_id":"d43669b3-2dcb-4b38-b8ca-21d9af618ddf","html_url":"https://github.com/aboutbits/github-actions-vercel","commit_stats":null,"previous_names":["aboutbits/github-actions-vercel"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/aboutbits/github-actions-vercel","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutbits%2Fgithub-actions-vercel","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutbits%2Fgithub-actions-vercel/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutbits%2Fgithub-actions-vercel/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutbits%2Fgithub-actions-vercel/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aboutbits","download_url":"https://codeload.github.com/aboutbits/github-actions-vercel/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aboutbits%2Fgithub-actions-vercel/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275883245,"owners_count":25545491,"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","status":"online","status_checked_at":"2025-09-19T02:00:09.700Z","response_time":108,"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":["github-actions","vercel"],"created_at":"2024-11-10T19:14:14.423Z","updated_at":"2025-09-19T05:03:48.539Z","avatar_url":"https://github.com/aboutbits.png","language":null,"readme":"# GitHub Actions Vercel\n\nA collection of GitHub actions for Vercel projects.\n\n## Actions\n\n### Deploy to Vercel\n\nThis action will deploy the application to Vercel.\n\n#### Example\n\n```yaml\n  - uses: actions/checkout@v3\n\n  - uses: aboutbits/github-actions-vercel/deploy@v1\n    env:\n    with:\n      vercel-token: ${{ secrets.VERCEL_TOKEN }}\n      vercel-organization-id: yyy\n      vercel-project-id: zzz\n      arguments: --prod\n```\n\n#### Inputs\n\nThe following inputs can be used as `step.with` keys:\n\n| Name                     | Required/Default | Description                              |\n|--------------------------|------------------|------------------------------------------|\n| `working-directory`      | (.)              | The working directory of the action      |\n| `vercel-token`           | Required         | The token to access the Vercel API       |\n| `vercel-organization-id` | Required         | The ID of the Vercel organization        |\n| `vercel-project-id`      | Required         | The ID of the Vercel project             |\n| `build-arguments`        | (empty)          | Additional build command line arguments  |\n| `deploy-arguments`       | (empty)          | Additional deploy command line arguments |\n\n#### Outputs\n\nThe following outputs can be used after the successful execution:\n\n| Name                     | Description                       |\n|--------------------------|-----------------------------------|\n| `url`                    | The URL of the deployment         |\n\n### Link a domain to a Vercel deployment\n\nThis action will link an added domain to a Vercel deployment URL.\n\n#### Example\n\n```yaml\n  - uses: actions/checkout@v3\n\n  - uses: aboutbits/github-actions-vercel/link-domain@v1\n    env:\n    with:\n      vercel-token: ${{ secrets.VERCEL_TOKEN }}\n      vercel-scope: xxx\n      deployment-domain: https://xyz.vercel.app\n      preview-domain: example.aboutbits.it\n```\n\n#### Inputs\n\nThe following inputs can be used as `step.with` keys:\n\n| Name                     | Required/Default | Description                                     |\n|--------------------------|------------------|-------------------------------------------------|\n| `working-directory`      | (.)              | The working directory of the action             |\n| `vercel-token`           | Required         | The token to access the Vercel API              |\n| `vercel-scope`           | Required         | The Vercel scope                                |\n| `deployment-domain`      | Required         | The deployment domain recieved from Vercel      |\n| `preview-domain`         | Required         | The custom preview domain that should be linked |\n\n### Unlink a domain of a Vercel deployment\n\nThis action will unlink an added domain of a Vercel deployment URL.\n\n#### Example\n\n```yaml\n  - uses: actions/checkout@v3\n\n  - uses: aboutbits/github-actions-vercel/unlink-domain@v1\n    env:\n    with:\n      vercel-token: ${{ secrets.VERCEL_TOKEN }}\n      vercel-scope: xxx\n      preview-domain: example.aboutbits.it\n```\n\n#### Inputs\n\nThe following inputs can be used as `step.with` keys:\n\n| Name                     | Required/Default | Description                                       |\n|--------------------------|------------------|---------------------------------------------------|\n| `working-directory`      | (.)              | The working directory of the action               |\n| `vercel-token`           | Required         | The token to access the Vercel API                |\n| `vercel-scope`           | Required         | The Vercel scope                                  |\n| `preview-domain`         | Required         | The custom preview domain that should be unlinked |\n\n## Build \u0026 Publish\n\nTo build and publish the action, visit the GitHub Actions page of the repository and trigger the workflow \"Release Package\" manually.\n\n## Information\n\nAbout Bits is a company based in South Tyrol, Italy. You can find more information about us on [our website](https://aboutbits.it).\n\n### Support\n\nFor support, please contact [info@aboutbits.it](mailto:info@aboutbits.it).\n\n### Credits\n\n- [All Contributors](../../contributors)\n\n### License\n\nThe MIT License (MIT). Please see the [license file](license.md) for more information.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faboutbits%2Fgithub-actions-vercel","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faboutbits%2Fgithub-actions-vercel","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faboutbits%2Fgithub-actions-vercel/lists"}