This commit is contained in:
cy 2025-01-03 06:50:11 -05:00
parent 81f860b0b7
commit 3927841df2
2 changed files with 16 additions and 18 deletions

View file

@ -1,21 +1,19 @@
name: mirror to gitlab name: mirror to gitlab
on: [push] on: [push]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: mirror - name: mirror
uses: SvanBoxel/gitlab-mirror-and-ci-action@5c211f993d35256d96b772d995972f434b94e11a uses: SvanBoxel/gitlab-mirror-and-ci-action@5c211f993d35256d96b772d995972f434b94e11a
with: with:
args: "https://git.cything.io/cy/infra" args: "https://git.cything.io/cy/infra"
env: env:
FOLLOW_TAGS: "true" FOLLOW_TAGS: "true"
FORCE_PUSH: "false" FORCE_PUSH: "false"
GITLAB_HOSTNAME: "git.cything.io" GITLAB_HOSTNAME: "git.cything.io"
GITLAB_USERNAME: "cy" GITLAB_USERNAME: "cy"
GITLAB_PASSWORD: ${{ secrets.GITLAB_PASSWORD }} GITLAB_PASSWORD: ${{ secrets.GITLAB_PASSWORD }}
GITLAB_PROJECT_ID: "2" GITLAB_PROJECT_ID: "2"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View file

@ -39,9 +39,9 @@ vim.cmd.colorscheme("iceberg")
-- restore terminal cursor on exit -- restore terminal cursor on exit
vim.api.nvim_create_autocmd("VimLeave", { vim.api.nvim_create_autocmd("VimLeave", {
callback = function () callback = function()
opt.guicursor = "a:ver25-blinkon500-blinkon500" opt.guicursor = "a:ver25-blinkon500-blinkon500"
end end,
}) })
-- blinking cursor in insert mode -- blinking cursor in insert mode