description:"Update your Nix flake.lock and send a PR"
inputs:
inputs:
description:"A space-separated list of inputs to update. Leave empty to update all inputs."
required:false
default:""
token:
description:"GITHUB_TOKEN or a `repo` scoped Personal Access Token (PAT)"
required:false
default:${{ github.token }}
commit-msg:
description:"The message provided with the commit"
required:false
default:"flake.lock: Update"
base:
description:"Sets the pull request base branch. Defaults to the branch checked out in the workflow."
required:false
branch:
description:"The branch of the PR to be created"
required:false
default:"update_flake_lock_action"
path-to-flake-dir:
description:"The path of the directory containing `flake.nix` file within your repository. Useful when `flake.nix` cannot reside at the root of your repository."
required:false
pr-title:
description:"The title of the PR to be created"
required:false
default:"flake.lock: Update"
pr-body:
description:"The body of the PR to be created"
required:false
default:|
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
```
{{env.GIT_COMMIT_MESSAGE }}
```
### Running GitHub Actions on this PR
GitHub Actions will not run workflows on pull requests which are opened by a GitHub Action.
To run GitHub Actions workflows on this PR, run:
```sh
git branch -D update_flake_lock_action
git fetch origin
git checkout update_flake_lock_action
git commit --amend --no-edit
git push origin update_flake_lock_action --force
```
pr-labels:
description:"A comma or newline separated list of labels to set on the Pull Request to be created"
required:false
default:""
pr-assignees:
description:"A comma or newline separated list of assignees (GitHub usernames)."
required:false
default:""
pr-reviewers:
description:"A comma or newline separated list of reviewers (GitHub usernames) to request a review from."
required:false
default:""
git-author-name:
description:"Author name used for commit. Only used if sign-commits is false."
required:false
default:"github-actions[bot]"
git-author-email:
description:"Author email used for commit. Only used if sign-commits is false."