Compare commits
2 commits
e83cb1d31a
...
aba28f908b
Author | SHA1 | Date | |
---|---|---|---|
|
aba28f908b | ||
5a71f3a3f4 |
2 changed files with 11 additions and 2 deletions
12
.github/workflows/update.yml
vendored
12
.github/workflows/update.yml
vendored
|
@ -24,6 +24,16 @@ jobs:
|
|||
/^$/ {in_update = 0}
|
||||
' | tee update.log
|
||||
|
||||
LOG=$(cat update.log)
|
||||
|
||||
LOG="${LOG//'%'/'%25'}"
|
||||
LOG="${LOG//$'\n'/'%0A'}"
|
||||
LOG="${LOG//$'\r'/'%0D'}"
|
||||
|
||||
echo "::set-output name=update_log::$LOG"
|
||||
|
||||
rm update.log
|
||||
|
||||
- name: Create Pull Request
|
||||
id: create-pull-request
|
||||
uses: https://code.forgejo.org/peter-evans/create-pull-request@main
|
||||
|
@ -36,7 +46,7 @@ jobs:
|
|||
- The following Nix Flake inputs were updated
|
||||
|
||||
```
|
||||
$(cat update.log)
|
||||
${{ steps.update.output.update_log }}
|
||||
```
|
||||
|
||||
Auto-generated by [update.yml][1] with the help of
|
||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,3 @@
|
|||
result
|
||||
.direnv
|
||||
.luarc.json
|
||||
update.log
|
||||
|
|
Loading…
Reference in a new issue