Aditya Trivedi
Apr 17, 2025
Here are 10 lesser-known but insanely useful GitHub Actions you should be using.
- name: Validate YAML
uses: ibiqlik/action-yaml-lint@v3
with:
config_file: '.yamllint'
Saves you from debugging night-mare inducing YAML misconfigurations
Essential for Kubernetes, GitHub Workflows and CI/CD.
- name: Check Markdown Links
uses: gaurav-nelson/github-action-markdown-link-check@v1
- name: Auto Assign PR
uses: kentaro-m/auto-assign-action@v1
with:
assignees: 'team-lead'
reviewers: 'senior-dev'
- name: Commitlint
uses: wagoid/commitlint-github-action@v5
- name: Cache Node Modules
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Notify Slack
uses: rtCamp/action-slack-notify@v2
with:
webhook-url: ${{ secrets.SLACK_WEBHOOK }}
message: "Deployment Status: ${{ job.status }}"
- name: License Check
uses: anchorfree/license-check-action@v2
- name: PR Size Labeler
uses: kentaro-m/size-label-action@v3
- name: Security Scan
uses: aquasecurity/trivy-action@v0.3.0
with:
image-ref: myapp:latest
Keeping your Docker images secure.
Identifying vulnerable dependencies before deployment.
- name: Update Jira Issue
uses: atlassian/gajira-create@v3
with:
project: "ENG"
issuetype: "Task"
summary: "Automated issue update from GitHub Action"
description: "Linked PR: ${{ github.event.pull_request.html_url }}"
Do let me know which one will you use ?