2021-10-18 17:30:27 +00:00
|
|
|
name: 'Update flake.lock'
|
|
|
|
description: 'Update your flake.lock and send a PR'
|
2021-11-29 19:10:08 +00:00
|
|
|
inputs:
|
|
|
|
inputs:
|
|
|
|
description: 'A space-separated list of inputs to update. Leave empty to update all inputs.'
|
|
|
|
required: false
|
|
|
|
default: ''
|
2022-01-13 07:46:19 +00:00
|
|
|
token:
|
|
|
|
description: 'GITHUB_TOKEN or a `repo` scoped Personal Access Token (PAT)'
|
|
|
|
required: false
|
|
|
|
default: ${{ github.token }}
|
2022-02-01 04:52:05 +00:00
|
|
|
commit-msg:
|
2022-02-01 05:18:39 +00:00
|
|
|
description: 'The message provided with the commit'
|
|
|
|
required: false
|
|
|
|
default: "flake.lock: Update"
|
|
|
|
pr-title:
|
|
|
|
description: 'The title of the PR to be created'
|
2022-02-01 04:19:58 +00:00
|
|
|
required: false
|
|
|
|
default: "flake.lock: Update"
|
2022-02-01 04:24:41 +00:00
|
|
|
pr-labels:
|
|
|
|
description: 'A comma or newline separated list of labels to set on the Pull Request to be created'
|
|
|
|
required: false
|
|
|
|
default: ''
|
2022-04-21 18:56:41 +00:00
|
|
|
outputs:
|
|
|
|
pull-request-number:
|
|
|
|
description: 'The number of the opened pull request'
|
|
|
|
value: ${{ steps.create-pr.outputs.pull-request-number }}
|
2021-10-18 17:30:27 +00:00
|
|
|
runs:
|
|
|
|
using: "composite"
|
|
|
|
steps:
|
2022-04-03 16:26:19 +00:00
|
|
|
- run: $GITHUB_ACTION_PATH/update-flake-lock.sh
|
2021-10-18 17:30:27 +00:00
|
|
|
shell: bash
|
|
|
|
env:
|
|
|
|
GIT_AUTHOR_NAME: github-actions[bot]
|
|
|
|
GIT_AUTHOR_EMAIL: <github-actions[bot]@users.noreply.github.com>
|
|
|
|
GIT_COMMITTER_NAME: github-actions[bot]
|
|
|
|
GIT_COMMITTER_EMAIL: <github-actions[bot]@users.noreply.github.com>
|
2022-04-03 16:26:19 +00:00
|
|
|
TARGETS: ${{ inputs.inputs }}
|
|
|
|
COMMIT_MSG: ${{ inputs.commit-msg }}
|
2021-10-19 16:29:17 +00:00
|
|
|
- run: |
|
|
|
|
content="$(git log --format=%b -n 1)"
|
|
|
|
content="${content//'%'/'%25'}"
|
|
|
|
content="${content//$'\n'/'%0A'}"
|
|
|
|
content="${content//$'\r'/'%0D'}"
|
|
|
|
echo "::set-output name=msg::$content"
|
|
|
|
shell: bash
|
|
|
|
id: commit_message
|
2021-10-18 17:30:27 +00:00
|
|
|
- name: Create PR
|
2022-04-21 18:56:41 +00:00
|
|
|
id: create-pr
|
2021-10-18 17:30:27 +00:00
|
|
|
uses: peter-evans/create-pull-request@v3
|
|
|
|
with:
|
|
|
|
branch: update_flake_lock_action
|
|
|
|
delete-branch: true
|
2022-02-01 05:18:39 +00:00
|
|
|
title: ${{ inputs.pr-title }}
|
2022-01-13 07:46:19 +00:00
|
|
|
token: ${{ inputs.token }}
|
2022-02-01 04:24:41 +00:00
|
|
|
labels: ${{ inputs.pr-labels }}
|
2021-10-19 16:29:17 +00:00
|
|
|
body: |
|
|
|
|
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action.
|
|
|
|
|
|
|
|
```
|
|
|
|
${{ steps.commit_message.outputs.msg }}
|
|
|
|
```
|
2021-10-27 16:29:51 +00:00
|
|
|
|
|
|
|
### Running GitHub Actions on this PR
|
|
|
|
|
2021-10-27 16:31:17 +00:00
|
|
|
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:
|
2021-10-27 16:29:51 +00:00
|
|
|
|
|
|
|
```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
|
|
|
|
```
|