From e5858a24cbd2fb84d08f8bdad8727cddd3bee562 Mon Sep 17 00:00:00 2001 From: Vasily Ptitsyn <12050609+younke@users.noreply.github.com> Date: Fri, 2 Jan 2026 17:55:16 +0500 Subject: [PATCH 1/2] docs(README.md): update badges --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e146955..e4afc21 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,10 @@
-# asdf-xcodegen ![Build](https://github.com/younke/asdf-xcodegen/workflows/Build/badge.svg) ![Lint](https://github.com/younke/asdf-xcodegen/workflows/Lint/badge.svg) ![Test mise](https://github.com/younke/asdf-xcodegen/workflows/Test%20mise/badge.svg) +# asdf-xcodegen + +[![Build](https://github.com/younke/asdf-xcodegen/actions/workflows/build.yml/badge.svg)](https://github.com/younke/asdf-xcodegen/actions/workflows/build.yml) +[![Lint](https://github.com/younke/asdf-xcodegen/actions/workflows/lint.yml/badge.svg)](https://github.com/younke/asdf-xcodegen/actions/workflows/lint.yml) +[![Mise](https://github.com/younke/asdf-xcodegen/actions/workflows/test-mise.yml/badge.svg)](https://github.com/younke/asdf-xcodegen/actions/workflows/test-mise.yml) [XcodeGen](https://github.com/yonaskolb/XcodeGen) plugin for the [asdf version manager](https://asdf-vm.com). @@ -48,7 +52,6 @@ xcodegen --help Note that globally installed `xcodegen` keeps `SettingPresets` in `/usr/local/share/xcodegen` folder. You might want to delete previous global installation (`brew` etc.). - Check [asdf](https://github.com/asdf-vm/asdf) readme for more instructions on how to install & manage versions. From d817ca6e15a84cf890bb60b4756e9151f10b7a9f Mon Sep 17 00:00:00 2001 From: Vasily Ptitsyn <12050609+younke@users.noreply.github.com> Date: Fri, 2 Jan 2026 17:55:35 +0500 Subject: [PATCH 2/2] feat(workflows): update --- .github/workflows/build.yml | 14 ++++++++------ .github/workflows/lint.yml | 11 ++++------- .github/workflows/test-mise.yml | 2 +- 3 files changed, 13 insertions(+), 14 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7ef8427..6c8404b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,13 +1,15 @@ name: Build + on: - pull_request: - paths-ignore: - - "**.md" push: - paths-ignore: - - "**.md" + branches: + - master + pull_request: schedule: - - cron: "0 0 * * *" # daily at midnight + - cron: "0 0 * * 5" + +env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} jobs: plugin_test: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index cfc419d..3b6a330 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -1,13 +1,10 @@ name: Lint + on: - pull_request: - paths-ignore: - - "**.md" push: - paths-ignore: - - "**.md" - schedule: - - cron: "0 0 * * *" # daily at midnight + branches: + - master + pull_request: jobs: shellcheck: diff --git a/.github/workflows/test-mise.yml b/.github/workflows/test-mise.yml index 0270c5a..7c0ad3e 100644 --- a/.github/workflows/test-mise.yml +++ b/.github/workflows/test-mise.yml @@ -1,4 +1,4 @@ -name: mise +name: Mise on: push: