From 6a6e20cf5d16f9e3a1718e812a368d71513355ab Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sat, 3 Jan 2026 11:40:58 +0900 Subject: [PATCH] feat(ci): add actionlint workflow linter MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - New workflow that runs actionlint on GitHub workflow file changes - Runs on push and pull_request events to .github/workflows/** 🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode) --- .github/workflows/lint-workflows.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/lint-workflows.yml diff --git a/.github/workflows/lint-workflows.yml b/.github/workflows/lint-workflows.yml new file mode 100644 index 0000000..8f094cb --- /dev/null +++ b/.github/workflows/lint-workflows.yml @@ -0,0 +1,20 @@ +name: Lint Workflows + +on: + push: + paths: + - '.github/workflows/**' + pull_request: + paths: + - '.github/workflows/**' + +jobs: + actionlint: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v5 + + - name: Run actionlint + uses: rhysd/actionlint-action@v1 + with: + fail-on-warning: false