Back to list
kaihendry

actions-optimiser

by kaihendry

0🍴 0📅 Jan 15, 2026

SKILL.md


name: actions-optimiser description: Steps for creating better Github actions by gathering context on how they are used

Process

1. Search for how an action is used:

When a Github workflow .github/workflows/* is using action in the YAML such as:

uses: hashicorp/setup-terraform@v3

You can use the pre-installed github cli to see how it is used by other repositories:

gh search code "setup-terraform path:.github/workflows"

2. Viewing search results with context

Use the pattern /repos/{owner}/{repo}/contents/{path} to look up at least five of the results in parallel. For example:

gh api repos/Sofiane-Truman/cloud-foundation-fabric/contents/.github/workflows/linting.yml | jq -r '.content' | base64 -d | less

3. Check with authorative usage

Given the earlier example of hashicorp/setup-terraform@v3, the canonical source respository is https://github.com/hashicorp/setup-terraform. Study the README.md

4. Plan for optimisations

How can the Github workflow be better? Assume we want to use the latest version of the actions and try keep to the defaults, though find & explore novel yet succinct usages from Github search.

Score

Total Score

45/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

0/10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

0/5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon