Skip to content

Commit 4f55eeb

Browse files
Merge branch 'master' into patch-1
2 parents 827d26c + fa2762f commit 4f55eeb

File tree

1 file changed

+63
-20
lines changed

1 file changed

+63
-20
lines changed

README.md

Lines changed: 63 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Awesome Actions [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) [<!--lint ignore no-dead-urls-->![GitHub Actions status | sdras/awesome-actions](https://github.com/sdras/awesome-actions/workflows/Lint%20Awesome%20List/badge.svg)](https://github.com/sdras/awesome-actions/actions?workflow=Lint+Awesome+List)
88

9-
> A curated list of awesome things related to [GitHub Actions](https://github.com/actions).
9+
> A curated list of awesome things related to GitHub Actions.
1010
1111
Actions are triggered by GitHub platform events directly in a repo and run on-demand workflows either on Linux, Windows or macOS virtual machines or inside a container in response. With GitHub Actions you can automate your workflow from idea to production.
1212

@@ -21,6 +21,7 @@ Actions are triggered by GitHub platform events directly in a repo and run on-de
2121
- [Collection of Actions](#collection-of-actions)
2222
- [Utility](#utility)
2323
- [Static Analysis](#static-analysis)
24+
- [Dynamic Analysis](#dynamic-analysis)
2425
- [Monitoring](#monitoring)
2526
- [Pull Requests](#pull-requests)
2627
- [GitHub Pages](#github-pages)
@@ -124,7 +125,6 @@ Set up your GitHub Actions workflow with a specific version of your programming
124125
- [Create a GitHub wiki page based on the provided markdown file](https://github.com/Decathlon/wiki-page-creator-action)
125126
- [Label your Pull Requests auto-magically (using committed files)](https://github.com/Decathlon/pull-request-labeler-action)
126127
- [Add Label to your Pull Requests based on the author team name](https://github.com/JulienKode/team-labeler-action)
127-
- [Manually trigger your GitHub Actions from a UI](https://www.actionspanel.app)
128128
- [Get a list of file changes with PR/Push](https://github.com/trilom/file-changes-action)
129129
- [Use private actions in any workflow](https://github.com/InVisionApp/private-action-loader)
130130
- [Label Your Issues Using the Issue's Contents](https://github.com/damccorm/tag-ur-it)
@@ -135,6 +135,14 @@ Set up your GitHub Actions workflow with a specific version of your programming
135135
- [Enforce Policies on GitHub Repositories and Commits](https://github.com/talos-systems/conform)
136136
- [Auto Label Issue Based on Issue Description](https://github.com/Renato66/auto-label)
137137
- [Update Configured GitHub Actions to the Latest Versions](https://github.com/fabasoad/ghacu)
138+
- [Create Issue Branch](https://github.com/robvanderleek/create-issue-branch)
139+
- [Remove Old Artifacts](https://github.com/c-hive/gha-remove-artifacts)
140+
- [Expose Git Commit Data As Environment Variables](https://github.com/rlespinasse/git-commit-data-action)
141+
- [Sync Defined Files/Binaries to Wiki or External Repositories](https://github.com/kai-tub/external-repo-sync-action)
142+
- [Create/Update/Delete a GitHub Wiki Page Based on Any File](https://github.com/Andrew-Chen-Wang/github-wiki-action)
143+
- [Prow GitHub Actions](https://github.com/jpmcb/prow-github-actions) - Automation of policy enforcement, chat-ops, and automatic PR merging.
144+
- [Check GitHub Status in your Workflow](https://github.com/crazy-max/ghaction-github-status)
145+
- [Manage Labels on GitHub (create/rename/update/delete) as Code](https://github.com/crazy-max/ghaction-github-labeler)
138146

139147
### Collection of Actions
140148

@@ -155,6 +163,7 @@ Set up your GitHub Actions workflow with a specific version of your programming
155163
- [Octions - GitHub Actions for GitHub REST API](https://github.com/maxkomarychev/octions)
156164
- [GitHub Actions for Docker](https://github.com/docker/github-actions)
157165
- [GitHub Actions for AWS](https://github.com/clowdhaus/aws-github-actions)
166+
- [Actions Hub](https://github.com/actionshub)
158167

159168
### Utility
160169

@@ -202,6 +211,13 @@ Set up your GitHub Actions workflow with a specific version of your programming
202211
- [Public IP](https://github.com/haythem/public-ip) - Queries GitHub actions runner's public IP address.
203212
- [GitHub Actions for Lazarus/FPC](https://github.com/gcarreno/setup-lazarus)
204213
- [Twilio Fax](https://github.com/fabasoad/twilio-fax-action/) - Sends a document by fax using your Twilio account.
214+
- [Setup Kubernetes tools](https://github.com/yokawasa/action-setup-kube-tools) - Install Kubernetes tools (kubectl, kustomize, helm, kubeval, conftest, and yq) on the runner.
215+
- [Setup Elastic Cloud Control Tool](https://github.com/yokawasa/action-setup-ecctl) - Install a specific version of ecctl on the runner.
216+
- [PowerShell Script](https://github.com/Amadevus/pwsh-script) - Run PowerShell scripts with workflow contexts (e.g. `$github.token`) and cmdlets, return value => action output.
217+
- [Upload and Scan Files with VirusTotal](https://github.com/crazy-max/ghaction-virustotal)
218+
- [Import a GPG Key](https://github.com/crazy-max/ghaction-import-gpg)
219+
- [Compress with UPX](https://github.com/crazy-max/ghaction-upx) - The Ultimate Packer for eXecutables.
220+
- [Pull the New Go Module Version Into the Proxy Cache](https://github.com/andrewslotin/go-proxy-pull-action) - Ensures the latest version of your Go module is in the proxy cache. Also updates the pkg.go.dev documentation upon release.
205221

206222
#### Environments
207223

@@ -214,7 +230,10 @@ Set up your GitHub Actions workflow with a specific version of your programming
214230

215231
#### Dependencies
216232

217-
- [Install NPM dependencies with caching](https://github.com/bahmutov/npm-install)
233+
- [Install NPM Dependencies with Caching](https://github.com/bahmutov/npm-install)
234+
- [Highlight New NPM Dependencies](https://github.com/hiwelo/new-dependencies-action) - Comments on pull requests newly added NPM dependencies information.
235+
- [Cache NPM Dependencies](https://github.com/c-hive/gha-npm-cache)
236+
- [Cache Yarn Dependencies](https://github.com/c-hive/gha-yarn-cache)
218237

219238
#### Semantic Versioning
220239

@@ -241,6 +260,7 @@ Set up your GitHub Actions workflow with a specific version of your programming
241260
- [Test Ansible roles with Molecule](https://github.com/robertdebock/molecule-action)
242261
- [Run performance testing with artillery.io](https://github.com/kenju/github-actions-artillery)
243262
- [Detect Flaky Tests with BuildPulse](https://github.com/Workshop64/buildpulse-action)
263+
- [Display Inline Code Annotations for Jest Tests](https://github.com/IgnusG/jest-report-action)
244264

245265
#### Linting
246266

@@ -271,6 +291,8 @@ Set up your GitHub Actions workflow with a specific version of your programming
271291
- [Linter for markdown (with presets)](https://github.com/avto-dev/markdown-lint)
272292
- [Stylelint problem matcher to create annotations](https://github.com/xt0rted/stylelint-problem-matcher)
273293
- [Run sqlcheck on the PR to identifies anti-patterns in SQL queries](https://github.com/yokawasa/action-sqlcheck)
294+
- [Validate Fastlane Supply Metadata Against the Play Store Guidelines](https://github.com/ashutoshgngwr/validate-fastlane-supply-metadata)
295+
- [Run Golint to lint your Golang code](https://github.com/Jerome1337/golint-action)
274296

275297
#### Security
276298

@@ -292,6 +314,10 @@ Set up your GitHub Actions workflow with a specific version of your programming
292314
- [Publishing code coverage to CodeClimate](https://github.com/paambaati/codeclimate-action)
293315
- [Update repository go report card](https://github.com/creekorful/goreportcard-action)
294316

317+
### Dynamic Analysis
318+
319+
- [Run Goimports to check Golang imports order](https://github.com/Jerome1337/goimports-action)
320+
295321
### Monitoring
296322

297323
- [Audit a webpage with Google Chrome's Lighthouse tests](https://github.com/jakejarvis/lighthouse-action)
@@ -303,31 +329,35 @@ Set up your GitHub Actions workflow with a specific version of your programming
303329

304330
### Pull Requests
305331

306-
- [Set pull request reviewers based on assignees](https://github.com/pullreminders/assignee-to-reviewer-action)
307-
- [Open or update pull request on branch push (with branch selection)](https://github.com/vsoch/pull-request-action)
308-
- [Automatically rebase a PR](https://github.com/cirrus-actions/rebase)
309-
- [Label pull request once it has a specified number of approvals](https://github.com/pullreminders/label-when-approved-action)
310-
- [Add labels to Pull Request based on matched file patterns](https://github.com/banyan/auto-label)
311-
- [Auto approve pull requests](https://github.com/hmarr/auto-approve-action)
312-
- [Automatically add reviewers to pull request based on the configuration file](https://github.com/kentaro-m/auto-assign-action)
313-
- [Add labels to Pull Request based on branch name patterns](https://github.com/TimonVS/pr-labeler-action)
314-
- [Add labels to Pull Request based on total size of the diff](https://github.com/pascalgn/size-label-action)
315-
- [Automatically merge Pull Requests that are ready](https://github.com/pascalgn/automerge-action)
316-
- [Verify pull requests contain a ticket reference](https://github.com/vijaykramesh/pr-lint-action)
317-
- [Create a pull request for changes to your repository in the actions workspace](https://github.com/peter-evans/create-pull-request)
318-
- [Pull Request Lint](https://github.com/seferov/pr-lint-action)
319-
- [ChatOps For Pull Requests](https://github.com/machine-learning-apps/actions-chatops)
320-
- [Prefix title and body of a PR based on text extracted from branch name](https://github.com/tzkhan/pr-update-action)
332+
- [Set PR Reviewers Based on Assignees](https://github.com/pullreminders/assignee-to-reviewer-action)
333+
- [Open or Update PR on Branch Push (with Branch Selection)](https://github.com/vsoch/pull-request-action)
334+
- [Automatically Rebase a PR](https://github.com/cirrus-actions/rebase)
335+
- [Label PR once it has a Specified Number of Approvals](https://github.com/pullreminders/label-when-approved-action)
336+
- [Add Labels to a PR based on Matched File Patterns](https://github.com/banyan/auto-label)
337+
- [Auto-Approve PRs](https://github.com/hmarr/auto-approve-action)
338+
- [Automatically add Reviewers to PR based on the Configuration File](https://github.com/kentaro-m/auto-assign-action)
339+
- [Add Labels to a PR based on Branch Name Patterns](https://github.com/TimonVS/pr-labeler-action)
340+
- [Add Labels to a PR based on Total Size of the Diff](https://github.com/pascalgn/size-label-action)
341+
- [Automatically merge PRs That Are Ready](https://github.com/pascalgn/automerge-action)
342+
- [Verify That PRs Contain a Ticket Reference](https://github.com/vijaykramesh/pr-lint-action)
343+
- [Create a PR for Changes to your Repository in the Actions Workspace](https://github.com/peter-evans/create-pull-request)
344+
- [Lint a PR](https://github.com/seferov/pr-lint-action)
345+
- [ChatOps for PRs](https://github.com/machine-learning-apps/actions-chatops)
346+
- [Prefix Title and Body of a PR Based on Text Extracted from Branch Name](https://github.com/tzkhan/pr-update-action)
321347
- [Block Autosquash Commits](https://github.com/xt0rted/block-autosquash-commits-action)
322348
- [Automatically Bump and Tag on Merge](https://github.com/anothrNick/github-tag-action)
323349
- [Automatically Update PRs with Outdated Checks and Squash and Merge the Ones Matching All Branch Protections](https://github.com/tibdex/autosquash)
324-
- [Merge Pal - automatically update and merge pull requests](https://github.com/maxkomarychev/merge-pal-action)
350+
- [Merge Pal - Automatically Update and Merge PRs](https://github.com/maxkomarychev/merge-pal-action)
325351
- [Enforce naming convention on pull request title](https://github.com/deepakputhraya/action-pr-title)
326352
- [Pull Request Stuck Notifier](https://github.com/loomble/pull-request-stuck-notifier-action)
327353
- [Lint pull request name with commitlint (Awesome if you squash merge !)](https://github.com/JulienKode/pull-request-name-linter-action)
328354
- [Block PR merges when Checks for target branches are failing](https://github.com/cirrus-actions/branch-guard)
329355
- [Get generated static site screenshots updated by Pull Request](https://github.com/ssowonny/diff-pages-action)
330356
- [Add Labels Depending if the Pull Request Still in Progress](https://github.com/AlbertHernandez/working-label-action)
357+
- [Ticket Check Action](https://github.com/neofinancial/ticket-check-action) - Automatically add a ticket or issue number to the start of all Pull Request titles.
358+
- [Pull Request Lint With Regex](https://github.com/MorrisonCole/pr-lint-action)
359+
- [Pull Request Landmines](https://github.com/tylermurry/github-pr-landmine)
360+
- [Annotate a GitHub Pull Request Based on a Checkstyle XML-Report](https://github.com/staabm/annotate-pull-request-from-checkstyle)
331361

332362
### GitHub Pages
333363

@@ -340,12 +370,14 @@ Set up your GitHub Actions workflow with a specific version of your programming
340370
- [Deploy Google Analytics stats to GitHub Pages](https://github.com/cristianpb/analytics-google)
341371
- [A Jupyter Notebook Blogging Platform Powered by GitHub Actions, Pages and Jekyll](https://github.com/fastai/fastpages)
342372
- [Deploy A Static Site to GitHub Pages](https://github.com/appleboy/gh-pages-action) - Deploy to custom directory and ignore folder/file.
373+
- [Deploy to GitHub Pages with Advanced Settings](https://github.com/crazy-max/ghaction-github-pages)
343374

344375
### Notifications and Messages
345376

346377
- [Send a Discord notification](https://github.com/Ilshidur/action-discord)
347378
- [Post a Slack message as a bot](https://github.com/pullreminders/slack-action)
348379
- [Send an SMS from GitHub Actions using Nexmo](https://github.com/nexmo-community/nexmo-sms-action)
380+
- [Send an SMS from GitHub Actions using Clockworksms](https://github.com/bharathvaj1995/clockwork-sms-action)
349381
- [Send a Telegram Message](https://github.com/appleboy/telegram-action)
350382
- [Send a File or Text Message to Discord (custom define color, username or avatar)](https://github.com/appleboy/discord-action)
351383
- [Collaborate on tweets using pull requests](https://github.com/gr2m/twitter-together)
@@ -359,6 +391,8 @@ Set up your GitHub Actions workflow with a specific version of your programming
359391
- [Create an Outlook Calendar Event using Microsoft Graph](https://github.com/anoopt/ms-graph-create-event)
360392
- [Watch for GitHub Wiki page changes and post to Slack](https://github.com/benmatselby/gollum-page-watcher-action)
361393
- [Send an SMS using MessageBird](https://github.com/nikitasavinov/messagebird-sms-action)
394+
- [Reply to Stale Bots](https://github.com/c-hive/fresh-bot)
395+
- [Send an Embed Message to Discord](https://github.com/sarisia/actions-status-discord)
362396
- [Keep Your PRs in Sync With Teamwork Tasks](https://github.com/miguelbemartin/teamwork-github)
363397

364398
### Deployment
@@ -398,6 +432,7 @@ Set up your GitHub Actions workflow with a specific version of your programming
398432
- [Netlify Deploy GitHub Action for each commit](https://github.com/nwtgck/actions-netlify)
399433
- [Run Ansible Playbooks](https://github.com/arillso/action.playbook)
400434
- [Publish a Python Distribution Package to Anaconda Cloud](https://github.com/fcakyon/conda-publish-action)
435+
- [Deploy VS Code Extension to Visual Studio Marketplace or the Open VSX Registry](https://github.com/HaaLeo/publish-vscode-extension)
401436

402437
#### Docker
403438

@@ -408,12 +443,16 @@ Set up your GitHub Actions workflow with a specific version of your programming
408443
- [Monitor and limit your docker image size](https://github.com/wemake-services/docker-image-size-limit)
409444
- [Publish Docker Images to the Amazon Elastic Container Registry (ECR)](https://github.com/appleboy/docker-ecr-action)
410445
- [Build And Push Your Docker Images Caching Each Stage To Reduce Build Time](https://github.com/whoan/docker-build-with-cache-action)
446+
- [Set up Docker Buildx](https://github.com/crazy-max/ghaction-docker-buildx)
447+
- [Convert Branch or Tag Name Into Docker-Compatible Image Tag](https://github.com/ankitvgupta/ref-to-tag-action/)
411448

412449
#### Kubernetes
413450

414451
- [Deploy to any Cloud or Kubernetes Using Pulumi](https://github.com/pulumi/actions)
415452
- [Deploy to Kubernetes with kubectl](https://github.com/steebchen/kubectl)
416453
- [Get Kubeconfig File From Google Kubernetes Engine (GKE)](https://github.com/machine-learning-apps/gke-kubeconfig)
454+
- [Kustomize Kubernetes Config YAMLs](https://github.com/karancode/kustomize-github-action)
455+
- [Create a Kubernetes Cluster for Testing Using Krucible](https://github.com/Krucible/krucible-github-action)
417456

418457
#### AWS
419458

@@ -447,6 +486,7 @@ Set up your GitHub Actions workflow with a specific version of your programming
447486
- [Generate OG Image](https://github.com/BoyWithSilverWings/generate-og-image) - Generate customisable open graph images from Markdown files.
448487
- [GitHub Actions for mdBook](https://github.com/peaceiris/actions-mdbook)
449488
- [Setup Mint](https://github.com/fabasoad/setup-mint-action) - Setup Mint (programming language for writing single page applications).
489+
- [Gatsby AWS S3 Deployment](https://github.com/jonelantha/gatsby-s3-action) - Deploy Gatsby to S3 (supports CloudFront).
450490

451491
### Machine Learning Ops
452492

@@ -455,6 +495,8 @@ Set up your GitHub Actions workflow with a specific version of your programming
455495
- [Query Experiment Tracking Results From Weights & Biases](https://github.com/machine-learning-apps/wandb-action)
456496
- [Run Parameterized Jupyter Notebooks](https://github.com/yaananth/run-notebook)
457497
- [Compile, Deploy and Run Kubeflow Pipeline](https://github.com/NikeNano/kubeflow-github-action)
498+
- [Automatically Dockerize A Data-Science Repo As A Jupyter Server](https://github.com/jupyterhub/repo2docker-action)
499+
- [Azure Machine Learning With GitHub Actions](https://github.com/machine-learning-apps/ml-template-azure)
458500

459501
### Build
460502

@@ -491,9 +533,10 @@ Set up your GitHub Actions workflow with a specific version of your programming
491533
- [Zero Downtime Laravel Deployments with GitHub Actions](https://atymic.dev/blog/github-actions-laravel-ci-cd/)
492534
- [Building Custom GitHub Actions Pluralsight Course](https://www.pluralsight.com/courses/building-custom-github-actions/)
493535
- [Continuously Deploying Django to DigitalOcean with Docker and GitHub Actions](https://testdriven.io/blog/deploying-django-to-digitalocean-with-docker-and-github-actions/)
536+
- [Deploying Self-Hosted GitHub Actions Runners with Docker](https://testdriven.io/blog/github-actions-docker/) - Deploy self-hosted GitHub Actions runners with Docker and Docker Swarm to DigitalOcean.
494537
- [Setup Auto-scaled self-hosted GitHub Actions Runners on AWS Spot-instances](https://040code.github.io/2020/05/25/scaling-selfhosted-action-runners)
495538

496-
> Please don't hesitate to make a PR if you have more resources to share. Check out [contributing.md](contributing.md) for more information
539+
> Please don't hesitate to make a PR if you have more resources to share. Check out [contributing.md](contributing.md) for more information.
497540
498541
## License
499542

0 commit comments

Comments
 (0)