This commit is contained in:
iFargle 2023-10-04 09:51:24 +09:00
parent 33c05a236f
commit 7b0a1dda50
2 changed files with 10 additions and 6 deletions

View file

@ -3,9 +3,8 @@
name: update-flake-lock name: update-flake-lock
run-name: ${{ github.actor }} - update-flake-lock run-name: ${{ github.actor }} - update-flake-lock
on: on:
push: schedule:
branches: - cron: '*/5 * * * *'
- main
jobs: jobs:
update-flake-lock: update-flake-lock:
runs-on: docker runs-on: docker
@ -17,7 +16,11 @@ jobs:
apk update apk update
apk add git nodejs nix \ apk add git nodejs nix \
--repository=http://dl-cdn.alpinelinux.org/alpine/edge/testing/ --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: with:
sparse-checkout: | sparse-checkout: |
.forgejo .forgejo
@ -50,6 +53,7 @@ jobs:
- if: success() - if: success()
run: | run: |
echo "TEST: ${{ secrets.TEST_SECRET }}" echo "TEST: ${{ secrets.TEST_SECRET }}"
echo "TOKEN: ${{ secrets.GITHUB_TOKEN }}"
- if: always() - if: always()
run: rm -rf /.cache run: rm -rf /.cache
- if: always() - if: always()

View file

@ -28,7 +28,7 @@
"workbench.startupEditor" = "none"; "workbench.startupEditor" = "none";
"diffEditor.ignoreTrimWhitespace" = false; "diffEditor.ignoreTrimWhitespace" = false;
"workbench.editor.autoLockGroups" = { "workbench.editor.autoLockGroups" = {
"mainThreadWebview-markdown.preview" = true "mainThreadWebview-markdown.preview" = true;
}; };
"editor.fontFamily" = "JetBrainsMono Regular"; "editor.fontFamily" = "JetBrainsMono Regular";
"editor.fontLigatures" = true; "editor.fontLigatures" = true;