Compare commits
11 Commits
Author | SHA1 | Date | |
---|---|---|---|
e00d99112b | |||
aa902c3538 | |||
8c2dfef874 | |||
e8bb9f761a | |||
073d38a53e | |||
d65c4f4a49 | |||
bf4213a00e | |||
0c7c875acc | |||
e2447fec26 | |||
11002c9dd5 | |||
2dc5d432c4 |
17
.github/workflows/ci.yml
vendored
17
.github/workflows/ci.yml
vendored
@ -1,17 +0,0 @@
|
|||||||
name: CI
|
|
||||||
on:
|
|
||||||
pull_request:
|
|
||||||
push:
|
|
||||||
branches: [main]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
shellcheck:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v2
|
|
||||||
with:
|
|
||||||
fetch-depth: 0
|
|
||||||
- name: Install Nix
|
|
||||||
uses: cachix/install-nix-action@v16
|
|
||||||
- name: Shellcheck
|
|
||||||
run: nix-shell --run 'shellcheck $(find . -type f -name "*.sh" -executable)'
|
|
19
.github/workflows/update.yml
vendored
19
.github/workflows/update.yml
vendored
@ -1,19 +0,0 @@
|
|||||||
name: update-flake-lock
|
|
||||||
on:
|
|
||||||
workflow_dispatch:
|
|
||||||
schedule:
|
|
||||||
- cron: '0 0 * * 0'
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
lockfile:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Checkout repository
|
|
||||||
uses: actions/checkout@v2
|
|
||||||
- name: Install Nix
|
|
||||||
uses: cachix/install-nix-action@v16
|
|
||||||
with:
|
|
||||||
extra_nix_config: |
|
|
||||||
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
|
||||||
- name: Update flake.lock
|
|
||||||
uses: ./.
|
|
20
.github/workflows/validate.yml
vendored
Normal file
20
.github/workflows/validate.yml
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
name: CI
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
push:
|
||||||
|
branches: [main]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
validate:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
- name: Validate YAML
|
||||||
|
uses: nwisbeta/validate-yaml-schema@v1.0.3
|
||||||
|
with:
|
||||||
|
yamlSchemasJson: |
|
||||||
|
{
|
||||||
|
"https://json.schemastore.org/github-action.json": ["action.yml"]
|
||||||
|
}
|
39
README.md
39
README.md
@ -27,7 +27,12 @@ jobs:
|
|||||||
extra_nix_config: |
|
extra_nix_config: |
|
||||||
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
access-tokens = github.com=${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Update flake.lock
|
- name: Update flake.lock
|
||||||
uses: DeterminateSystems/update-flake-lock@v3
|
uses: DeterminateSystems/update-flake-lock@vX
|
||||||
|
with:
|
||||||
|
pr-title: "Update flake.lock" # Title of PR to be created
|
||||||
|
pr-labels: | # Labels to be set on the PR
|
||||||
|
dependencies
|
||||||
|
automated
|
||||||
```
|
```
|
||||||
|
|
||||||
## Example updating specific input(s)
|
## Example updating specific input(s)
|
||||||
@ -62,7 +67,11 @@ jobs:
|
|||||||
|
|
||||||
## Running GitHub Actions CI
|
## Running GitHub Actions CI
|
||||||
|
|
||||||
GitHub Actions will not run workflows when a branch is pushed by or a PR is opened by a GitHub Action. To work around this, try:
|
GitHub Actions will not run workflows when a branch is pushed by or a PR is opened by a GitHub Action. There are two ways to have GitHub Actions CI run on a PR submitted by this action.
|
||||||
|
|
||||||
|
### Without a Personal Authentication Token
|
||||||
|
|
||||||
|
Without using a Personal Authentication Token, you can manually run the following to kick off a CI run:
|
||||||
|
|
||||||
```
|
```
|
||||||
git branch -D update_flake_lock_action
|
git branch -D update_flake_lock_action
|
||||||
@ -72,6 +81,32 @@ git commit --amend --no-edit
|
|||||||
git push origin update_flake_lock_action --force
|
git push origin update_flake_lock_action --force
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### With a Personal Authentication Token
|
||||||
|
|
||||||
|
By providing a Personal Authentication Token, the PR will be submitted in a way that bypasses this limitation (GitHub will essentially think it is the owner of the PAT submitting the PR, and not an Action).
|
||||||
|
You can create a token by visiting https://github.com/settings/tokens and select at least the `repo` scope. Then, store this token in your repository secrets (i.e. 'https://github.com/<USER>/<REPO>/settings/secrets/actions') as `GH_TOKEN_FOR_UPDATES` and set up your workflow file like the following:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
name: update-flake-lock
|
||||||
|
on:
|
||||||
|
workflow_dispatch: # allows manual triggering
|
||||||
|
schedule:
|
||||||
|
- cron: '0 0 * * 1,4' # Run twice a week
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
lockfile:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Install Nix
|
||||||
|
uses: cachix/install-nix-action@v16
|
||||||
|
- name: Update flake.lock
|
||||||
|
uses: DeterminateSystems/update-flake-lock@vX
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
||||||
|
```
|
||||||
|
|
||||||
## Contributing
|
## Contributing
|
||||||
|
|
||||||
Feel free to send a PR or open an issue if you find something functions unexpectedly! Please make sure to test your changes and update any related documentation before submitting your PR.
|
Feel free to send a PR or open an issue if you find something functions unexpectedly! Please make sure to test your changes and update any related documentation before submitting your PR.
|
||||||
|
31
action.yml
31
action.yml
@ -5,10 +5,35 @@ inputs:
|
|||||||
description: 'A space-separated list of inputs to update. Leave empty to update all inputs.'
|
description: 'A space-separated list of inputs to update. Leave empty to update all inputs.'
|
||||||
required: false
|
required: false
|
||||||
default: ''
|
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"
|
||||||
|
pr-title:
|
||||||
|
description: 'The title of the PR to be created'
|
||||||
|
required: false
|
||||||
|
default: "flake.lock: Update"
|
||||||
|
pr-labels:
|
||||||
|
description: 'A comma or newline separated list of labels to set on the Pull Request to be created'
|
||||||
|
required: false
|
||||||
|
default: ''
|
||||||
runs:
|
runs:
|
||||||
using: "composite"
|
using: "composite"
|
||||||
steps:
|
steps:
|
||||||
- run: ./update-input-or-inputs.sh ${{ inputs.inputs }}
|
- run: |
|
||||||
|
if [[ -n '${{ inputs.inputs }}' ]]; then
|
||||||
|
inputs=()
|
||||||
|
for input in ${{ inputs.inputs }}; do
|
||||||
|
inputs+=("--update-input" "$input")
|
||||||
|
done
|
||||||
|
nix flake lock "${inputs[@]}" --commit-lock-file --commit-lockfile-summary "${{ inputs.commit-msg }}"
|
||||||
|
else
|
||||||
|
nix flake update --commit-lock-file --commit-lockfile-summary "${{ inputs.commit-msg }}"
|
||||||
|
fi
|
||||||
shell: bash
|
shell: bash
|
||||||
env:
|
env:
|
||||||
GIT_AUTHOR_NAME: github-actions[bot]
|
GIT_AUTHOR_NAME: github-actions[bot]
|
||||||
@ -28,7 +53,9 @@ runs:
|
|||||||
with:
|
with:
|
||||||
branch: update_flake_lock_action
|
branch: update_flake_lock_action
|
||||||
delete-branch: true
|
delete-branch: true
|
||||||
title: "flake.lock: Update"
|
title: ${{ inputs.pr-title }}
|
||||||
|
token: ${{ inputs.token }}
|
||||||
|
labels: ${{ inputs.pr-labels }}
|
||||||
body: |
|
body: |
|
||||||
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
|
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
|
||||||
|
|
||||||
|
@ -1,12 +0,0 @@
|
|||||||
#!/usr/bin/env bash
|
|
||||||
to_update=$*
|
|
||||||
|
|
||||||
if [ -n "$to_update" ]; then
|
|
||||||
inputs=()
|
|
||||||
for input in $to_update; do
|
|
||||||
inputs+=("--update-input" "$input")
|
|
||||||
done
|
|
||||||
nix flake lock "${inputs[@]}" --commit-lock-file
|
|
||||||
else
|
|
||||||
nix flake update --commit-lock-file
|
|
||||||
fi
|
|
Reference in New Issue
Block a user