Test
This commit is contained in:
parent
33c05a236f
commit
7b0a1dda50
2 changed files with 10 additions and 6 deletions
|
@ -3,9 +3,8 @@
|
|||
name: update-flake-lock
|
||||
run-name: ${{ github.actor }} - update-flake-lock
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
schedule:
|
||||
- cron: '*/5 * * * *'
|
||||
jobs:
|
||||
update-flake-lock:
|
||||
runs-on: docker
|
||||
|
@ -17,7 +16,11 @@ jobs:
|
|||
apk update
|
||||
apk add git nodejs nix \
|
||||
--repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/
|
||||
- uses: actions/checkout@v3
|
||||
git config --global user.email "${{github.actor}}"
|
||||
git config --global user.name "Albert J. Copeland"
|
||||
echo "TEST: ${{ secrets.TEST_SECRET }}"
|
||||
echo "TOKEN: ${{ secrets.GITHUB_TOKEN }}"
|
||||
- uses: https://code.forgejo.org/actions/checkout@v3
|
||||
with:
|
||||
sparse-checkout: |
|
||||
.forgejo
|
||||
|
@ -49,7 +52,8 @@ jobs:
|
|||
|
||||
- if: success()
|
||||
run: |
|
||||
echo "TEST: ${{ secrets.TEST_SECRET }}"
|
||||
echo "TEST: ${{ secrets.TEST_SECRET }}"
|
||||
echo "TOKEN: ${{ secrets.GITHUB_TOKEN }}"
|
||||
- if: always()
|
||||
run: rm -rf /.cache
|
||||
- if: always()
|
||||
|
|
|
@ -28,7 +28,7 @@
|
|||
"workbench.startupEditor" = "none";
|
||||
"diffEditor.ignoreTrimWhitespace" = false;
|
||||
"workbench.editor.autoLockGroups" = {
|
||||
"mainThreadWebview-markdown.preview" = true
|
||||
"mainThreadWebview-markdown.preview" = true;
|
||||
};
|
||||
"editor.fontFamily" = "JetBrainsMono Regular";
|
||||
"editor.fontLigatures" = true;
|
||||
|
|
Loading…
Reference in a new issue