-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from edulix/main
- Loading branch information
Showing
2 changed files
with
169 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,60 +21,129 @@ inputs: | |
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: '' | ||
sign-commits: | ||
description: 'Set to true if the action should sign the commit with GPG' | ||
required: false | ||
default: 'false' | ||
gpg-private-key: | ||
description: 'GPG Private Key with which to sign the commits in the PR to be created' | ||
required: false | ||
default: '' | ||
gpg-passphrase: | ||
description: 'GPG Private Key Passphrase for the GPG Private Key with which to sign the commits in the PR to be created' | ||
required: false | ||
default: '' | ||
outputs: | ||
pull-request-number: | ||
description: 'The number of the opened pull request' | ||
value: ${{ steps.create-pr.outputs.pull-request-number }} | ||
runs: | ||
using: "composite" | ||
steps: | ||
- run: $GITHUB_ACTION_PATH/update-flake-lock.sh | ||
- name: Import bot's GPG key for signing commits | ||
if: ${{ inputs.sign-commits == 'true' }} | ||
id: import-gpg | ||
uses: crazy-max/ghaction-import-gpg@v4 | ||
with: | ||
gpg_private_key: ${{ inputs.gpg-private-key }} | ||
passphrase: ${{ inputs.gpg-passphrase }} | ||
git_config_global: true | ||
git_user_signingkey: true | ||
git_commit_gpgsign: true | ||
- name: Set environment variables (signed commits) | ||
if: ${{ inputs.sign-commits == 'true' }} | ||
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> | ||
GIT_AUTHOR_NAME: ${{ steps.import-gpg.outputs.name }} | ||
GIT_AUTHOR_EMAIL: ${{ steps.import-gpg.outputs.email }} | ||
GIT_COMMITTER_NAME: ${{ steps.import-gpg.outputs.name }} | ||
GIT_COMMITTER_EMAIL: ${{ steps.import-gpg.outputs.email }} | ||
TARGETS: ${{ inputs.inputs }} | ||
run: | | ||
echo "GIT_AUTHOR_NAME=$GIT_AUTHOR_NAME" >> $GITHUB_ENV | ||
echo "GIT_AUTHOR_EMAIL=<$GIT_AUTHOR_EMAIL>" >> $GITHUB_ENV | ||
echo "GIT_COMMITTER_NAME=$GIT_COMMITTER_NAME" >> $GITHUB_ENV | ||
echo "GIT_COMMITTER_EMAIL=<$GIT_COMMITTER_EMAIL>" >> $GITHUB_ENV | ||
- name: Set environment variables (unsigned commits) | ||
if: ${{ inputs.sign-commits != 'true' }} | ||
shell: bash | ||
run: | | ||
echo "GIT_AUTHOR_NAME=github-actions[bot]" >> $GITHUB_ENV | ||
echo "GIT_AUTHOR_EMAIL=<github-actions[bot]@users.noreply.github.com>" >> $GITHUB_ENV | ||
echo "GIT_COMMITTER_NAME=github-actions[bot]" >> $GITHUB_ENV | ||
echo "GIT_COMMITTER_EMAIL=<github-actions[bot]@users.noreply.github.com>" >> $GITHUB_ENV | ||
- name: Run update-flake-lock.sh | ||
run: $GITHUB_ACTION_PATH/update-flake-lock.sh | ||
shell: bash | ||
env: | ||
GIT_AUTHOR_NAME: ${{ env.GIT_AUTHOR_NAME }} | ||
GIT_AUTHOR_EMAIL: ${{ env.GIT_AUTHOR_EMAIL }} | ||
GIT_COMMITTER_NAME: ${{ env.GIT_COMMITTER_NAME }} | ||
GIT_COMMITTER_EMAIL: ${{ env.GIT_COMMITTER_EMAIL }} | ||
TARGETS: ${{ inputs.inputs }} | ||
COMMIT_MSG: ${{ inputs.commit-msg }} | ||
- 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" | ||
- name: Save PR Body as file | ||
uses: DamianReeves/[email protected] | ||
with: | ||
path: pr_body.template | ||
contents: ${{ inputs.pr-body }} | ||
env: {} | ||
- name: Set additional env variables (GIT_COMMIT_MESSAGE) | ||
shell: bash | ||
id: commit_message | ||
run: | | ||
GIT_COMMIT_MESSAGE="$(git log --format=%b -n 1)" | ||
GIT_COMMIT_MESSAGE="${GIT_COMMIT_MESSAGE//'%'/'%25'}" | ||
GIT_COMMIT_MESSAGE="${GIT_COMMIT_MESSAGE//$'\n'/'%0A'}" | ||
GIT_COMMIT_MESSAGE="${GIT_COMMIT_MESSAGE//$'\r'/'%0D'}" | ||
echo "GIT_COMMIT_MESSAGE=$GIT_COMMIT_MESSAGE" >> $GITHUB_ENV | ||
echo "GIT_COMMIT_MESSAGE is: ${GIT_COMMIT_MESSAGE}" | ||
- name: Interpolate PR Body | ||
uses: pedrolamas/[email protected] | ||
with: | ||
files: 'pr_body.template' | ||
output-filename: 'pr_body.txt' | ||
- name: Read pr_body.txt | ||
id: pr_body | ||
uses: andstor/file-reader-action@v1 | ||
with: | ||
path: "pr_body.txt" | ||
- name: Create PR | ||
id: create-pr | ||
uses: peter-evans/create-pull-request@v3 | ||
with: | ||
branch: ${{ inputs.branch }} | ||
delete-branch: true | ||
committer: ${{ env.GIT_COMMITTER_NAME }} ${{ env.GIT_COMMITTER_EMAIL }} | ||
author: ${{ env.GIT_AUTHOR_NAME }} ${{ env.GIT_AUTHOR_EMAIL }} | ||
title: ${{ inputs.pr-title }} | ||
token: ${{ inputs.token }} | ||
labels: ${{ inputs.pr-labels }} | ||
body: | | ||
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action. | ||
``` | ||
${{ steps.commit_message.outputs.msg }} | ||
``` | ||
### 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 | ||
``` | ||
body: ${{ steps.pr_body.outputs.contents }} |