{"id":28291071,"url":"https://github.com/hasundue/molt-action","last_synced_at":"2025-06-23T18:08:40.230Z","repository":{"id":235672830,"uuid":"791026361","full_name":"hasundue/molt-action","owner":"hasundue","description":"GitHub Action to update dependencies in Deno projects with hasundue/molt","archived":false,"fork":false,"pushed_at":"2025-06-22T10:16:50.000Z","size":74,"stargazers_count":12,"open_issues_count":6,"forks_count":3,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-22T11:24:36.916Z","etag":null,"topics":["deno","dependencies","github-actions"],"latest_commit_sha":null,"homepage":"","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/hasundue.png","metadata":{"files":{"readme":"README.md","changelog":null,"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,"zenodo":null},"funding":{"github":"hasundue","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"lfx_crowdfunding":null,"polar":null,"buy_me_a_coffee":null,"custom":null}},"created_at":"2024-04-24T00:47:23.000Z","updated_at":"2025-06-22T10:16:54.000Z","dependencies_parsed_at":"2024-05-20T02:29:34.288Z","dependency_job_id":"1f1e2137-ec77-4ede-9fe0-f32e51029b36","html_url":"https://github.com/hasundue/molt-action","commit_stats":null,"previous_names":["hasundue/molt-action"],"tags_count":22,"template":false,"template_full_name":null,"purl":"pkg:github/hasundue/molt-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasundue%2Fmolt-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasundue%2Fmolt-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasundue%2Fmolt-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasundue%2Fmolt-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hasundue","download_url":"https://codeload.github.com/hasundue/molt-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hasundue%2Fmolt-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261528683,"owners_count":23172756,"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":["deno","dependencies","github-actions"],"created_at":"2025-05-22T03:13:19.456Z","updated_at":"2025-06-23T18:08:40.220Z","avatar_url":"https://github.com/hasundue.png","language":"TypeScript","funding_links":["https://github.com/sponsors/hasundue"],"categories":[],"sub_categories":[],"readme":"# 🦕 molt-action\n\nA GitHub Action to create a pull request to update dependencies in a Deno\nproject with [molt](https://github.com/hasundue/molt). See\n[Pull requests](https://github.com/hasundue/molt-action/pulls) for an example.\n\n## Usage\n\n```yaml\nruns-on: ubuntu-latest\n\nsteps:\n    - uses: actions/checkout@v4\n\n    - uses: hasundue/molt-action@v1\n      with:\n        # optional inputs\n```\n\n### Inputs\n\nAll inputs are **optional**. If not set, sensible defaults will be used. Many of\nthem are inherited from\n[peter-evans/create-pull-request](https://github.com/peter-evans/create-pull-request)\nand passed through to it.\n\n| Name            | Description                                                                                                                                                  | Default                                                                                                                         |\n| --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------- |\n| `author`        | Author of the pull request in the format of `Display Name \u003cemail@adress.com\u003e`.                                                                               | `${{ github.actor }} \u003c${{ github.actor_id }}+${{ github.actor }}@users.noreply.github.com\u003e`                                     |\n| `base`          | Base branch to create the pull request against.                                                                                                              | The branch checked out in the workflow                                                                                          |\n| `branch`        | Head branch to create the pull request from.                                                                                                                 | `molt-action`                                                                                                                   |\n| `commit`        | Whether to commit changes locally.                                                                                                                           | `true`                                                                                                                          |\n| `commit-prefix` | Prefix for commit messages.                                                                                                                                  | `chore:`                                                                                                                        |\n| `committer`     | Name of the committer in the format of `Display Name \u003cemail@address.com\u003e`                                                                                    | `github-actions[bot] \u003c41898282+github-actions[bot]@users.noreply.github.com\u003e`                                                   |\n| `config`        | Relative path to the configuration file including imports from the root directory. Ignored if `root` is not given. Set to `false` to disable auto discovery. | `deno.json` or `deno.jsonc` if available                                                                                        |\n| `draft`         | Whether to create a draft pull request.                                                                                                                      | `false`                                                                                                                         |\n| `labels`        | Comma or newline-separated list of labels to add to the pull request.                                                                                        | `dependencies`                                                                                                                  |\n| `lock`          | Relative path to the lock file to update from the root directory. Ignored if `root` is not given. Set to `false` to disable auto discovery.                  | `deno.lock` if available                                                                                                        |\n| `pull-request`  | Whether to create a pull request.                                                                                                                            | `true`                                                                                                                          |\n| `root`          | Root directory of the relevant source files.                                                                                                                 | The shallowest directory containing `deno.json` or `deno.jsonc` if available, otherwise the repository root                     |\n| `source`        | Source files to update dependencies in, specified as glob patterns.                                                                                          | If a Deno configuration file with imports is specified or found, this defaults to nothing. Otherwise, it defaults to `**/*.ts`. |\n| `exclude`       | Files to exclude from dependency updates, specified as glob patterns. If a directory is specified, all files under it are excluded.                          | `[]`                                                                                                                            |\n| `token`         | GitHub token with permissions `contents: write` and `pull-requests: write` or a repo scoped personal access token (PAT).                                     | `${{ secrets.GITHUB_TOKEN }}`                                                                                                   |\n| `write`         | Whether to write changes to disk. Forced to `true` if `commit` or `pull-request` is `true`.                                                                  | `true`                                                                                                                          |\n\n### Outputs\n\n| Name           | Description                                               |\n| -------------- | --------------------------------------------------------- |\n| `dependencies` | A JSON list of updated dependencies, or an empty string.  |\n| `files`        | A list of updated files.                                  |\n| `report`       | A detailed report of the changes made in Markdown format. |\n| `summary`      | A summary of the changes made.                            |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhasundue%2Fmolt-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhasundue%2Fmolt-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhasundue%2Fmolt-action/lists"}