{"id":18980655,"url":"https://github.com/snowfallorg/thaw-action","last_synced_at":"2025-06-26T10:02:48.866Z","repository":{"id":209254623,"uuid":"723591259","full_name":"snowfallorg/thaw-action","owner":"snowfallorg","description":"Upgrade Nix Flake inputs using Thaw in GitHub Actions.","archived":false,"fork":false,"pushed_at":"2023-11-26T11:37:36.000Z","size":15,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-21T09:17:09.535Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/snowfallorg.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"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}},"created_at":"2023-11-26T06:29:02.000Z","updated_at":"2024-04-02T00:20:17.000Z","dependencies_parsed_at":null,"dependency_job_id":"8f587245-76cf-41b8-a2f9-737317188f39","html_url":"https://github.com/snowfallorg/thaw-action","commit_stats":{"total_commits":9,"total_committers":1,"mean_commits":9.0,"dds":0.0,"last_synced_commit":"b45b391aeaba32f50e8bd29fa1abea7133270eb3"},"previous_names":["snowfallorg/thaw-action"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/snowfallorg/thaw-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fthaw-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fthaw-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fthaw-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fthaw-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/snowfallorg","download_url":"https://codeload.github.com/snowfallorg/thaw-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/snowfallorg%2Fthaw-action/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262044399,"owners_count":23249745,"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":[],"created_at":"2024-11-08T16:07:25.722Z","updated_at":"2025-06-26T10:02:48.830Z","avatar_url":"https://github.com/snowfallorg.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Thaw GitHub Action\n\n\u003ca href=\"https://nixos.wiki/wiki/Flakes\" target=\"_blank\"\u003e\n\t\u003cimg alt=\"Nix Flakes Ready\" src=\"https://img.shields.io/static/v1?logo=nixos\u0026logoColor=d8dee9\u0026label=Nix%20Flakes\u0026labelColor=5e81ac\u0026message=Ready\u0026color=d8dee9\u0026style=for-the-badge\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://github.com/snowfallorg/lib\" target=\"_blank\"\u003e\n\t\u003cimg alt=\"Built With Snowfall\" src=\"https://img.shields.io/static/v1?label=Built%20With\u0026labelColor=5e81ac\u0026message=Snowfall\u0026color=d8dee9\u0026style=for-the-badge\"\u003e\n\u003c/a\u003e\n\u003ca href=\"https://github.com/snowfallorg/thaw\" target=\"_blank\"\u003e\n\t\u003cimg alt=\"Using Thaw\" src=\"https://img.shields.io/static/v1?label=Using\u0026labelColor=5e81ac\u0026message=Thaw\u0026color=d8dee9\u0026style=for-the-badge\"\u003e\n\u003c/a\u003e\n\n\u003cp\u003e\n\u003c!--\n\tThis paragraph is not empty, it contains an em space (UTF-8 8195) on the next line in order\n\tto create a gap in the page.\n--\u003e\n  \n\u003c/p\u003e\n\n\u003e Automate the process of updating Nix Flake inputs using [Thaw](https://github.com/snowfallorg/thaw).\n\n## Usage\n\nAdd this action as a step in your workflow:\n\n```yaml\nname: 'Update Flake Inputs'\n\non:\n  # If you want to run this workflow manually.\n  workflow_dispatch:\n\n  # If you want this workflow to run on a regular schedule.\n  schedule:\n    - cron: '0 0 * * 0'\n\njobs:\n  upgrade:\n    runs-on: ubuntu-latest\n    steps:\n      # Checkout your repository.\n      - uses: actions/checkout@v4\n      # Make sure that you have Nix installed.\n      - uses: DeterminateSystems/nix-installer-action@main\n      # Run Thaw.\n      - uses: snowfallorg/thaw-action@main\n```\n\nAdditional configuration can be passed to the action using `with`.\nAll configuration is optional.\n\n```yaml\nname: 'Update Flake Inputs'\n\non:\n  # If you want to run this workflow manually.\n  workflow_dispatch:\n\n  # If you want this workflow to run on a regular schedule.\n  schedule:\n    - cron: '0 0 * * 0'\n\njobs:\n  upgrade:\n    runs-on: ubuntu-latest\n    steps:\n      # Checkout your repository.\n      - uses: actions/checkout@v4\n      # Make sure that you have Nix installed.\n      - uses: DeterminateSystems/nix-installer-action@main\n      # Run Thaw.\n      - uses: snowfallorg/thaw-action@main\n        with:\n          # Specify which inputs to attempt to update. By default all inputs will be checked\n          # for available updates.\n          inputs: 'my-input my-other-input'\n\n          # Use a specific github token that has repo access. Defaults to `GITHUB_TOKEN`.\n          token: ${{ secrets.MY_SPECIAL_GITHUB_TOKEN }}\n\n          # The path to the directory containing the `flake.nix` file.\n          flake-path: 'my/sub/directory'\n\n          # Use a custom version of Thaw.\n          thaw-uri: 'github:snowfallorg/thaw?ref=v1.0.0'\n\n          # Add options for the Nix command.\n          nix-options: '--extra-experimental-features flakes --my-other-option'\n\n          # Specify a custom branch to push changes to. Defaults to `gh-thaw-action`.\n          branch: 'my-custom-branch'\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnowfallorg%2Fthaw-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsnowfallorg%2Fthaw-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsnowfallorg%2Fthaw-action/lists"}