awesome-actions/README.md

432 lines
31 KiB
Markdown
Raw Normal View History

2018-10-20 21:08:16 -04:00
<p align="center">
<br>
2019-12-07 19:57:22 -05:00
<img src="awesome-actions.png" width="150"/>
2018-10-20 21:08:16 -04:00
<br>
</p>
2020-03-06 03:20:32 -05:00
# 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)
2019-12-07 18:41:59 -05:00
2019-12-07 17:54:41 -05:00
> A curated list of awesome things related to [GitHub Actions](https://github.com/actions).
2018-10-20 21:08:16 -04:00
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.
2018-10-20 21:08:16 -04:00
## Contents
2019-02-27 10:24:49 -05:00
- [Official Resources](#official-resources)
2019-11-02 19:01:43 -04:00
- [Workflow Examples](#workflow-examples)
- [Official Actions](#official-actions)
- [Create your Actions](#create-your-actions)
2019-02-27 10:24:49 -05:00
- [Community Resources](#community-resources)
2019-02-27 17:29:14 -05:00
- [GitHub Tools and Management](#github-tools-and-management)
- [Collection of Actions](#collection-of-actions)
- [Utility](#utility)
- [Static Analysis](#static-analysis)
- [Monitoring](#monitoring)
2019-02-27 17:29:14 -05:00
- [Pull Requests](#pull-requests)
- [GitHub Pages](#github-pages)
- [Notifications and Messages](#notifications-and-messages)
- [Deployment](#deployment)
- [External Services](#external-services)
- [Frontend Tools](#frontend-tools)
2019-09-25 00:55:31 -04:00
- [Machine Learning Ops](#machine-learning-ops)
- [Build](#build)
- [Cheat Sheet](#cheat-sheet)
2019-02-27 10:24:49 -05:00
- [Tutorials](#tutorials)
2018-10-20 21:08:16 -04:00
2019-02-27 17:29:14 -05:00
## Official Resources
2018-10-20 21:08:16 -04:00
2019-02-27 10:24:49 -05:00
- [Official Site](https://github.com/features/actions)
- [Official Community Forum Board](https://github.community/t5/GitHub-Actions/bd-p/actions)
2020-02-13 04:13:31 -05:00
- [Official Documentation](https://help.github.com/en/actions)
2019-11-02 19:01:43 -04:00
- [Official Actions organization](https://github.com/actions)
- [actions/virtual-environments](https://github.com/actions/virtual-environments) - GitHub Actions virtual environments.
- [actions/runner](https://github.com/actions/runner) - The Runner for GitHub Actions.
2019-11-02 17:37:26 -04:00
- [GitHub Blog Announcement](https://github.blog/2018-10-17-action-demos/)
2018-10-20 21:08:16 -04:00
2019-11-02 19:01:43 -04:00
### Workflow Examples
- [actions/starter-workflows](https://github.com/actions/starter-workflows) - Starter workflow management.
- [actions/example-services](https://github.com/actions/example-services) - Example workflows using service containers.
### Official Actions
#### Workflow Tool Actions
Tool actions for your workflow.
2019-11-13 08:48:15 -05:00
<!--lint ignore awesome-spell-check-->
- [actions/github](https://github.com/actions/github) - Wraps actions-toolkit into an Action for common GitHub automations.
2019-11-02 19:01:43 -04:00
- [actions/checkout](https://github.com/actions/checkout) - Setup your repository on your workflow.
- [actions/upload-artifact](https://github.com/actions/upload-artifact) - Upload artifacts from your workflow.
- [actions/download-artifact](https://github.com/actions/download-artifact) - Download artifacts from your build.
- [actions/cache](https://github.com/actions/cache) - Cache dependencies and build outputs in GitHub Actions.
- [actions/github-script](https://github.com/actions/github-script) - Write a script for GitHub API and the workflow contexts.
#### Actions for GitHub Automation
Automate management for issues, pull requests, and releases.
- [actions/create-release](https://github.com/actions/create-release) - An Action to create releases via the GitHub Release API.
- [actions/upload-release-asset](https://github.com/actions/upload-release-asset) - An Action to upload a release asset via the GitHub Release API.
- [actions/first-interaction](https://github.com/actions/first-interaction) - An action for filtering pull requests and issues from first-time contributors.
- [actions/stale](https://github.com/actions/stale) - Marks issues and pull requests that have not had recent interaction.
- [actions/labeler](https://github.com/actions/labeler) - An action for automatically labelling pull requests.
#### Setup Actions
Set up your GitHub Actions workflow with a specific version of your programming languages.
- [actions/setup-node: Node.js](https://github.com/actions/setup-node)
- [actions/setup-python: Python](https://github.com/actions/setup-python)
- [actions/setup-go: Go](https://github.com/actions/setup-go)
- [actions/setup-dotnet: .NET core sdk](https://github.com/actions/setup-dotnet)
- [actions/setup-haskell: Haskell (GHC and Cabal)](https://github.com/actions/setup-haskell)
- [actions/setup-java: Java](https://github.com/actions/setup-java)
- [actions/setup-ruby: Ruby](https://github.com/actions/setup-ruby)
- [actions/setup-elixir: Elixir](https://github.com/actions/setup-elixir)
### Create your Actions
#### JavaScript and TypeScript Actions
- [actions/toolkit](https://github.com/actions/toolkit) - The GitHub ToolKit for developing GitHub Actions.
- [actions/hello-world-javascript-action](https://github.com/actions/hello-world-javascript-action) - A template to demonstrate how to build a JavaScript action.
- [actions/javascript-action](https://github.com/actions/javascript-action) - Create a JavaScript Action.
- [actions/typescript-action](https://github.com/actions/typescript-action) - Create a TypeScript Action.
- [actions/http-client](https://github.com/actions/http-client) - A lightweight HTTP client optimized for use with actions, TypeScript with generics and async await.
2019-11-02 19:01:43 -04:00
#### Docker Container Actions
- [actions/hello-world-docker-action](https://github.com/actions/hello-world-docker-action) - A template to demonstrate how to build a Docker action.
- [actions/container-toolkit-action](https://github.com/actions/container-toolkit-action) - Template repo for creating container actions using actions/toolkit.
2019-02-27 17:29:14 -05:00
## Community Resources
2018-10-20 21:08:16 -04:00
2019-02-27 17:29:14 -05:00
### GitHub Tools and Management
2019-01-29 15:19:36 -05:00
2019-02-27 10:24:49 -05:00
- [Declaratively setup GitHub Labels](https://github.com/lannonbr/issue-label-manager-action)
2019-10-13 23:48:11 -04:00
- [Action to sync GitHub labels in the declarative way](https://github.com/micnncim/action-label-syncer)
2019-07-13 06:46:01 -04:00
- [Add releases to GitHub](https://github.com/elgohr/Github-Release-Action)
- [Publish a docker image to Dockerhub](https://github.com/elgohr/Publish-Docker-Github-Action)
2019-07-20 21:48:55 -04:00
- [Create an issue using content from a file](https://github.com/peter-evans/create-issue-from-file)
- [Publish GitHub Releases with Assets](https://github.com/softprops/action-gh-release)
2019-09-14 09:49:08 -04:00
- [GitHub Project Automation+](https://github.com/alex-page/github-project-automation-plus) - Automate GitHub Project cards with any webhook event.
2020-02-06 14:26:58 -05:00
- [Run GitHub Actions Locally with a web interface](https://github.com/phishy/wflow)
2019-09-21 02:53:14 -04:00
- [Build and Publish Android debug APK](https://github.com/ShaunLWM/action-release-debugapk)
2019-09-23 11:30:29 -04:00
- [Generate sequential build numbers for GitHub Actions](https://github.com/einaregilsson/build-number)
2019-10-27 04:57:44 -04:00
- [Push Git changes to GitHub repository without authentication difficulties](https://github.com/ad-m/github-push-action)
2019-12-24 10:46:23 -05:00
- [Generate release notes based on your events](https://github.com/Decathlon/release-notes-generator-action)
- [Create a GitHub wiki page based on the provided markdown file](https://github.com/Decathlon/wiki-page-creator-action)
- [Label your Pull Requests auto-magically (using committed files)](https://github.com/Decathlon/pull-request-labeler-action)
- [Add Label to your Pull Requests based on the author team name](https://github.com/JulienKode/team-labeler-action)
- [Manually trigger your GitHub Actions from a UI](https://www.actionspanel.app)
- [Get a list of file changes with PR/Push](https://github.com/trilom/file-changes-action)
- [Use private actions in any workflow](https://github.com/InVisionApp/private-action-loader)
- [Label Your Issues Using the Issue's Contents](https://github.com/damccorm/tag-ur-it)
2020-02-12 14:02:26 -05:00
- [Rollback a GitHub Release](https://github.com/author/action-rollback)
2020-01-10 02:51:04 -05:00
2019-02-27 17:29:14 -05:00
### Collection of Actions
2019-01-29 15:19:36 -05:00
2019-02-27 10:24:49 -05:00
- [Use HashiCorp's Terraform](https://github.com/hashicorp/terraform-github-actions)
2020-02-06 14:26:58 -05:00
- [GitHub Actions for Yarn 1](https://github.com/Borales/actions-yarn)
- [GitHub Actions for Yarn 2](https://github.com/sergioramos/yarn-actions)
2019-02-27 10:24:49 -05:00
- [GitHub Actions for Golang](https://github.com/cedrickring/golang-action)
- [GitHub Actions for R and accompanying #rstats package](http://maxheld.de/ghactions/)
- [GitHub Actions for WordPress](https://github.com/10up/actions-wordpress/)
- [GitHub Actions for Composer](https://github.com/MilesChou/composer-action)
2019-08-20 21:49:57 -04:00
- [GitHub Actions for Flutter](https://github.com/subosito/flutter-action)
2019-09-07 06:04:50 -04:00
- [GitHub Actions for PHP](https://github.com/shivammathur/setup-php)
2019-09-15 15:18:40 -04:00
- [GitHub Actions for Rust](https://github.com/actions-rs)
- [GitHub Actions for Android](https://github.com/Malinskiy/action-android)
- [GitHub Actions for Logtalk and Prolog](https://github.com/logtalk-actions)
2019-11-27 23:51:07 -05:00
- [GitHub Actions for Deno](https://github.com/denolib/setup-deno)
2019-12-02 14:21:47 -05:00
- [GitHub Actions for Unity](https://github.com/webbertakken/unity-actions)
2019-12-19 16:04:10 -05:00
- [Octions - GitHub Actions for GitHub REST API](https://github.com/maxkomarychev/octions)
2019-01-29 15:19:36 -05:00
2019-02-27 17:29:14 -05:00
### Utility
2019-01-29 15:19:36 -05:00
2019-09-15 17:44:13 -04:00
- [Setup `ssh-agent`](https://github.com/webfactory/ssh-agent) - Run `ssh-agent` with additional SSH keys to access private repositories.
2019-05-23 09:19:17 -04:00
- [GitHub Actions Badges for your README](https://github.com/atrox/github-actions-badge)
- [GitHub Actions for Python project with poetry](https://github.com/abatilo/actions-poetry)
- [GitHub Actions to compile LaTeX documents](https://github.com/xu-cheng/latex-action)
- [Update Maxmind Databases](https://github.com/meetup/maxmind-updater)
- [Debug with SSH over tmate](https://github.com/mxschmitt/action-tmate) - Debug the Action directly by providing a SSH connection.
- [Unlock git-crypt files](https://github.com/sliteteam/github-action-git-crypt-unlock)
2019-09-17 08:24:10 -04:00
- [Golang CGO cross compiler](https://github.com/crazy-max/ghaction-xgo)
2019-10-08 14:41:06 -04:00
- [Run your job on another architecture: arm32, aarch64 and others](https://github.com/uraimo/run-on-arch-action)
- [Generate a table of contents](https://github.com/technote-space/toc-generator)
- [Automatically add Label or Assignee to an Issue](https://github.com/Naturalclar/issue-action)
2019-10-14 03:29:58 -04:00
- [Action to send LGTM reaction as image or GIF when we say lgtm](https://github.com/micnncim/action-lgtm-reaction)
- [Generate build numbers across multiple scopes](https://github.com/zyborg/gh-action-buildnum)
- [Publish GitHub release artifacts](https://github.com/skx/github-action-publish-binaries)
- [Jekyll Diff Action](https://github.com/David-Byrne/jekyll-diff-action) - Diffs the built Jekyll site after a change, and comments the result back to GitHub.
2019-11-15 06:16:12 -05:00
- [Branch Protection Bot](https://github.com/benjefferies/branch-protection-bot) - Temporarily disable and re-enable "Include administrators" option in branch protection.
- [Wait for commit statuses](https://github.com/WyriHaximus/github-action-wait-for-status) - Wait until all statuses and checks are successful or any of them has failed and set its status output accordingly.
2019-11-13 02:10:27 -05:00
- [Get Latest Tag](https://github.com/WyriHaximus/github-action-get-previous-tag) - Get the previous tag from git.
2019-11-13 02:09:13 -05:00
- [Create Milestone](https://github.com/WyriHaximus/github-action-create-milestone) - Create a new open milestone given the title and description.
2019-11-13 02:09:47 -05:00
- [Close Milestone](https://github.com/WyriHaximus/github-action-close-milestone) - Close the given milestone.
- [Action to enforce branch naming rules](https://github.com/deepakputhraya/action-branch-name)
- [Expose slug of some GitHub variables](https://github.com/marketplace/actions/github-slug)
2019-12-25 06:16:37 -05:00
- [awesome-lint as a GitHub Action](https://github.com/max/awesome-lint)
- [Action to lint Awesome lists](https://github.com/squadcastHQ/awesome-lint-action) - Uses [awesome-lint](https://github.com/sindresorhus/awesome-lint) to lint awesome lists as an Action.
- [Edit JSON File](https://github.com/deef0000dragon1/json-edit-action)
2019-12-24 10:46:23 -05:00
- [Build Slate documentation](https://github.com/Decathlon/slate-builder-action)
- [Read Properties](https://github.com/christian-draeger/read-properties) - Read values from `.properties` files.
- [Write Properties](https://github.com/christian-draeger/write-properties) - Write values to `.properties` files.
- [Apply templates with Jinja2](https://github.com/cuchi/jinja2-action) - Use the Jinja2 template engine to generate files from templates.
#### Environments
- [Create an envfile](https://github.com/SpicyPizza/create-envfile)
- [Export global environment variables for succeeding build steps](https://github.com/zweitag/github-actions)
- [Programmatically set environment variables for use in subsequent steps](https://github.com/allenevans/set-env)
- [Install Conda environments for Python](https://github.com/goanpeca/setup-miniconda)
#### Dependencies
- [Install NPM dependencies with caching](https://github.com/bahmutov/npm-install)
#### Semantic Versioning
- [Next SemVers](https://github.com/WyriHaximus/github-action-next-semvers) - Output the next version for major, minor, and patch version based on the given semver version.
- [Get latest SemVer and branch name given a search string](https://github.com/jessicalostinspace/github-action-get-regex-branch)
- [Cut Release Branch](https://github.com/jessicalostinspace/cut-release-action) - Cuts a release branch given a branch prefix and optional semantic version.
- [Increment Semantic Version](https://github.com/christian-draeger/increment-semantic-version) - Bump a given semantic version (SemVer), depending on given release type.
2019-01-29 15:19:36 -05:00
### Static Analysis
2019-01-29 15:19:36 -05:00
2019-02-27 10:24:49 -05:00
- [PHPStan Static code analyzer Action](https://github.com/OskarStark/phpstan-ga)
- [GraphQL Inspector Action](https://github.com/kamilkisiela/graphql-inspector)
- [PowerShell static analysis with PSScriptAnalyzer](https://github.com/devblackops/github-action-psscriptanalyzer)
- [Run tfsec, with reviewdog output on the PR](https://github.com/reviewdog/action-tfsec)
#### Testing
2020-02-06 14:26:58 -05:00
- [Snyk Test Action](https://github.com/snyk/actions)
2019-02-27 10:24:49 -05:00
- [Run Tests through Puppeteer, the Headless Chrome Node API](https://github.com/ianwalter/puppeteer)
- [xUnit Slack Reporter: Sends summary of tests from xUnit reports to a Slack channel](https://github.com/ivanklee86/xunit-slack-reporter)
- [Run codeception tests](https://github.com/joelwmale/codeception-action)
- [Run TestCafe tests](https://github.com/DevExpress/testcafe-action)
- [Run Unity tests](https://github.com/webbertakken/unity-test-runner)
- [Run Cypress E2E tests](https://github.com/cypress-io/github-action)
- [Test Ansible roles with Molecule](https://github.com/robertdebock/molecule-action)
#### Linting
- [PHP Code fixer Action](https://github.com/OskarStark/php-cs-fixer-ga)
- [Runs Hadolint against a Dockerfile within a repository](https://github.com/burdzwastaken/hadolint-action)
2019-09-26 14:16:15 -04:00
- [Run ESLint, with reviewdog output on the PR](https://github.com/reviewdog/action-eslint)
- [JavaScript-based linter for \*.workflow files](https://github.com/OmarTawfik/github-actions-js)
2019-09-26 14:16:15 -04:00
- [Lint terraform files using tflint, with reviewdog output on the PR](https://github.com/reviewdog/action-tflint)
2019-07-20 21:48:55 -04:00
- [autopep8: Automatically formats Python code to conform to the PEP 8 style guide](https://github.com/peter-evans/autopep8)
- [Run `localheinz/composer-normalize` to ensure your PHP project has a normalized `composer.json`](https://github.com/localheinz/composer-normalize-action)
- [Run Go lint checks on PR event](https://github.com/ArangoGutierrez/GoLinty-Action)
2019-09-07 15:03:05 -04:00
- [Node.js - Automatically run the `format` and/or `lint` script used by the package](https://github.com/MarvinJWendt/run-node-formatter)
- [Stylelinter - GitHub Action that runs stylelint](https://github.com/exelban/stylelint)
2019-09-26 14:16:15 -04:00
- [Run stylelint, with reviewdog output on the PR](https://github.com/reviewdog/action-stylelint)
2019-09-15 22:51:33 -04:00
- [PyCodeStyle Action - A GitHub Action that leaves a comment on your PR with pycodestyle (autopep8) feedback](https://github.com/ankitvgupta/pycodestyle-action)
- [wemake-python-styleguide - The strictest and most opinionated python linter ever, with optional reviewdog output on the PR](https://github.com/wemake-services/wemake-python-styleguide)
2019-09-24 15:49:52 -04:00
- [Run TSLint with status checks and file diff annotations](https://github.com/mooyoul/tslint-actions)
2019-10-08 13:41:10 -04:00
- [Lint Pull Request commits with commitlint](https://github.com/wagoid/commitlint-github-action)
2019-09-26 14:16:15 -04:00
- [Run vint, with reviewdog output on the PR](https://github.com/reviewdog/action-vint)
- [Run mispell, with reviewdog output on the PR](https://github.com/reviewdog/action-misspell)
- [Run golangci-lint, with reviewdog output on the PR](https://github.com/reviewdog/action-golangci-lint)
- [Run shellcheck, with reviewdog output on the PR](https://github.com/reviewdog/action-shellcheck)
- [Catch insensitive, inconsiderate writing in your markdown docs](https://github.com/theashraf/alex-action)
2020-01-13 06:13:04 -05:00
- [Run dotenv-linter - Lints your .env files like a charm, with optional reviewdog output on the PR](https://github.com/wemake-services/dotenv-linter)
- [Run dotenv-linter, with reviewdog output on the PR](https://github.com/mgrachev/action-dotenv-linter)
2020-01-04 17:56:00 -05:00
- [Show and auto-fix linting errors for many programming languages](https://github.com/samuelmeuli/lint-action)
- [PHP_CodeSniffer With Annotations](https://github.com/chekalsky/phpcs-action)
2020-01-24 03:13:54 -05:00
- [Linter for markdown (with presets)](https://github.com/avto-dev/markdown-lint)
2020-02-03 02:46:43 -05:00
- [Stylelint problem matcher to create annotations](https://github.com/xt0rted/stylelint-problem-matcher)
2019-01-29 15:19:36 -05:00
#### Security
- [A vulnerability scanner for your docker images](https://github.com/phonito/phonito-scanner-action)
- [Automatically approve and merge Dependabot updates](https://github.com/ridedott/dependabot-auto-merge-action)
2020-01-05 06:26:24 -05:00
- [Run dlint security linter on your Python code](https://github.com/xen0l/dlint-check)
- [AWS Secrets Manager Actions](https://github.com/say8425/aws-secrets-manager-actions) - Define AWS Secrets Manager secrets to environment values.
2020-01-30 18:26:44 -05:00
- [Linting your AWS IAM policy documents for correctness and security issues](https://github.com/xen0l/iam-lint)
- [Secret Spreader](https://github.com/webfactory/secret-spreader) - Not an action per se, but a tool to manage Actions Secrets across a list of repositories.
#### Code Coverage
- [Scan code with SonarCloud](https://github.com/sonarsource/sonarcloud-github-action)
- [Send your code coverage to codecov.io](https://github.com/codecov/codecov-action)
- [Publishing code coverage to CodeClimate](https://github.com/paambaati/codeclimate-action)
- [Update repository go report card](https://github.com/creekorful/goreportcard-action)
### Monitoring
- [Audit a webpage with Google Chrome's Lighthouse tests](https://github.com/jakejarvis/lighthouse-action)
- [Runs Lighthouse and posts results to PRs and Slack](https://github.com/foo-software/lighthouse-check-action)
- [Run Lighthouse in CI using GitHub Actions](https://github.com/treosh/lighthouse-ci-action)
- [Continuous Benchmarking and Benchmark Visualization for Go](https://github.com/bobheadxi/gobenchdata)
2019-02-27 17:29:14 -05:00
### Pull Requests
2019-01-29 15:19:36 -05:00
2019-02-27 10:24:49 -05:00
- [Set pull request reviewers based on assignees](https://github.com/pullreminders/assignee-to-reviewer-action)
- [Open or update pull request on branch push (with branch selection)](https://github.com/vsoch/pull-request-action)
- [Automatically rebase a PR](https://github.com/cirrus-actions/rebase)
- [Label pull request once it has a specified number of approvals](https://github.com/pullreminders/label-when-approved-action)
- [Add labels to Pull Request based on matched file patterns](https://github.com/banyan/auto-label)
- [Auto approve pull requests](https://github.com/hmarr/auto-approve-action)
2020-02-06 14:26:58 -05:00
- [Automatically add reviewers to pull request based on the configuration file](https://github.com/kentaro-m/auto-assign-action)
2019-04-11 09:25:36 -04:00
- [Add labels to Pull Request based on branch name patterns](https://github.com/TimonVS/pr-labeler-action)
- [Add labels to Pull Request based on total size of the diff](https://github.com/pascalgn/size-label-action)
- [Automatically merge Pull Requests that are ready](https://github.com/pascalgn/automerge-action)
- [Verify pull requests contain a ticket reference](https://github.com/vijaykramesh/pr-lint-action)
2019-07-20 21:48:55 -04:00
- [Create a pull request for changes to your repository in the actions workspace](https://github.com/peter-evans/create-pull-request)
- [Pull Request Lint](https://github.com/seferov/pr-lint-action)
2019-09-25 00:55:31 -04:00
- [ChatOps For Pull Requests](https://github.com/machine-learning-apps/actions-chatops)
2019-10-07 08:14:19 -04:00
- [Prefix title and body of a PR based on text extracted from branch name](https://github.com/tzkhan/pr-update-action)
2019-10-03 15:37:42 -04:00
- [Block Autosquash Commits](https://github.com/xt0rted/block-autosquash-commits-action)
- [Automatically Bump and Tag on Merge](https://github.com/anothrNick/github-tag-action)
2019-10-10 17:40:39 -04:00
- [Automatically Update PRs with Outdated Checks and Squash and Merge the Ones Matching All Branch Protections](https://github.com/tibdex/autosquash)
2019-11-22 02:34:45 -05:00
- [Merge Pal - automatically update and merge pull requests](https://github.com/maxkomarychev/merge-pal-action)
- [Enforce naming convention on pull request title](https://github.com/deepakputhraya/action-pr-title)
2019-11-29 11:27:03 -05:00
- [Pull Request Stuck Notifier](https://github.com/loomble/pull-request-stuck-notifier-action)
- [Lint pull request name with commitlint (Awesome if you squash merge !)](https://github.com/JulienKode/pull-request-name-linter-action)
2020-02-03 15:14:55 -05:00
- [Block PR merges when Checks for target branches are failing](https://github.com/cirrus-actions/branch-guard)
2019-01-29 15:19:36 -05:00
2019-02-27 17:29:14 -05:00
### GitHub Pages
2019-02-27 10:24:49 -05:00
- [Deploy a Zola site to GitHub Pages](https://github.com/shalzz/zola-deploy-action)
- [Build Hugo static content site and publish it to gh-pages branch](https://github.com/khanhicetea/gh-actions-hugo-deploy-gh-pages)
- [Build a Jekyll site—with Custom Jekyll Plugins & Build Scripts—and deploy it back to the Gh-Pages Branch](https://github.com/BryanSchuetz/jekyll-deploy-gh-pages)
- [Google Dataset Search Metadata](https://www.github.com/openschemas/extractors/) - And other schema.org extractors to make datasets discoverable from GitHub pages.
2019-05-22 03:03:52 -04:00
- [GitHub Actions for deploying to GitHub Pages with Static Site Generators](https://github.com/peaceiris/actions-gh-pages)
- [GitHub Action for Hexo](https://github.com/heowc/action-hexo)
- [Deploy Google Analytics stats to GitHub Pages](https://github.com/cristianpb/analytics-google)
2020-02-15 12:50:14 -05:00
- [A Jupyter Notebook Blogging Platform Powered by GitHub Actions, Pages and Jekyll](https://github.com/fastai/fastpages)
2019-01-29 15:19:36 -05:00
2019-02-27 17:29:14 -05:00
### Notifications and Messages
2019-01-29 15:19:36 -05:00
2019-02-27 10:24:49 -05:00
- [Send a Discord notification](https://github.com/Ilshidur/action-discord)
- [Post a Slack message as a bot](https://github.com/pullreminders/slack-action)
- [Send an SMS from GitHub Actions using Nexmo](https://github.com/nexmo-community/nexmo-sms-action)
- [Send a Telegram Message](https://github.com/appleboy/telegram-action)
- [Send a File or Text Message to Discord (custom define color, username or avatar)](https://github.com/appleboy/telegram-action)
2019-03-06 13:57:01 -05:00
- [Collaborate on tweets using pull requests](https://github.com/gr2m/twitter-together)
2019-06-12 00:25:47 -04:00
- [Send a Push Notification via Push by Techulus](https://github.com/techulus/push-github-action)
2019-07-20 21:48:55 -04:00
- [Send email with SendGrid](https://github.com/peter-evans/sendgrid-action)
- [Send a Push Notification via Join](https://github.com/ShaunLWM/action-join)
2019-09-29 05:05:21 -04:00
- [New package version checker for npm](https://github.com/MeilCli/npm-update-check-action)
- [New package version checker for NuGet](https://github.com/MeilCli/nuget-update-check-action)
- [New package version checker for Gradle](https://github.com/MeilCli/gradle-update-check-action)
- [Send a Push Notification via Pushbullet](https://github.com/ShaunLWM/action-pushbullet)
- [Create an Outlook Calendar Event using Microsoft Graph](https://github.com/anoopt/ms-graph-create-event)
2019-02-27 17:29:14 -05:00
### Deployment
2019-02-27 10:24:49 -05:00
- [Deploy to Netlify](https://github.com/netlify/actions)
- [Deploy a Probot App using Actions](https://probot.github.io/docs/deployment/#github-actions)
- [Deploy a playlist to Spotify](https://github.com/swinton/SpotHub)
- [Deploy VS Code extensions with vsce](https://github.com/lannonbr/vsce-action)
- [Purge Cloudflare cache after updating a website](https://github.com/jakejarvis/cloudflare-purge-action)
2019-02-27 10:24:49 -05:00
- [Deploy your DNS configuration using DNS Control](https://github.com/koenrh/dnscontrol-action)
2019-03-25 09:10:52 -04:00
- [Deploy a Theme to Shopify](https://github.com/pgrimaud/action-shopify)
- [Trigger multiple GitLab CI Pipeline](https://github.com/appleboy/gitlab-ci-action)
- [Trigger multiple Jenkins Jobs](https://github.com/appleboy/jenkins-action)
- [GitHub Action for Homebrew Tap](https://github.com/izumin5210/action-homebrew-tap)
- [Copy files and artifacts via SSH](https://github.com/appleboy/scp-action)
- [Executing remote ssh commands](https://github.com/appleboy/ssh-action)
2019-09-14 19:25:03 -04:00
- [Publish a Python distribution package to PyPI](https://github.com/pypa/gh-action-pypi-publish)
- [Deploy Static Website to Azure Storage](https://github.com/feeloor/azure-static-website-deploy)
2019-09-19 13:15:14 -04:00
- [Cross platform Chocolatey CLI to build and publish packages](https://github.com/crazy-max/ghaction-chocolatey)
2019-09-22 01:29:38 -04:00
- [Deploy iOS Pod Library to Cocoapods](https://github.com/michaelhenry/deploy-to-cocoapods-github-action)
- [GitHub Action for TencentCloud Serverless](https://github.com/Juliiii/action-scf)
2019-09-23 16:21:30 -04:00
- [Publish npm (pre)releases](https://github.com/epeli/npm-release/)
- [Deploy a static site to Surge.sh](https://github.com/yavisht/deploy-via-surge.sh-github-action-template)
2019-09-30 00:24:30 -04:00
- [GitHub Action for GoReleaser, a release automation tool for Go projects](https://github.com/goreleaser/goreleaser-action)
- [FTP Deploy Action, Deploys a GitHub project to a FTP server using GitHub actions](https://github.com/SamKirkland/FTP-Deploy-Action)
2019-10-13 13:53:46 -04:00
- [Publish Article to Dev.to](https://github.com/tylerauerbeck/publish-to-dev.to-action)
- [Action For Semantic Release](https://github.com/cycjimmy/semantic-release-action)
- [Deploy a Collection to Ansible Galaxy](https://github.com/artis3n/ansible_galaxy_collection)
2019-11-15 08:56:51 -05:00
- [Publish module to Puppet Forge](https://github.com/barnumbirr/action-forge-publish)
2019-12-18 16:50:41 -05:00
- [Build and publish Electron apps](https://github.com/samuelmeuli/action-electron-builder)
2019-12-18 16:48:48 -05:00
- [Publish a Maven package](https://github.com/samuelmeuli/action-maven-publish)
2019-12-25 00:55:10 -05:00
- [Build and deploy a theme to Ghost CMS](https://github.com/TryGhost/action-deploy-theme)
2020-01-07 05:27:12 -05:00
- [Deploy an Ansible role to Ansible Galaxy](https://github.com/robertdebock/galaxy-action)
- [Publish one or more JS modules to a registry](https://github.com/author/action-publish)
- [Publish a package with 2FA using Slack](https://github.com/erezrokah/2fa-with-slack-action)
#### Docker
- [Update a Docker Hub repository description from README.md](https://github.com/peter-evans/dockerhub-description)
- [Publish Docker Images to the GitHub Package Registry (GPR)](https://github.com/machine-learning-apps/gpr-docker-publish)
- [Update a repository's "Full description" on Docker Hub](https://github.com/mpepping/github-actions/tree/master/docker-hub-metadata)
#### Kubernetes
- [Deploy to any Cloud or Kubernetes Using Pulumi](https://github.com/pulumi/actions)
- [Deploy to Kubernetes with kubectl](https://github.com/steebchen/kubectl)
- [Get Kubeconfig File From Google Kubernetes Engine (GKE)](https://github.com/machine-learning-apps/gke-kubeconfig)
#### AWS
- [Sync/upload a directory to an AWS S3 bucket](https://github.com/jakejarvis/s3-sync-action)
- [Deploy Lambda code to an existing function](https://github.com/appleboy/lambda-action)
#### Terraform
- [Generate terraform documentation](https://github.com/Dirrk/terraform-docs) - Uses terraform-docs to generate docs for terraform modules.
- [An example of using Terraform to validate and apply GitHub administration](https://github.com/asgharlabs/github-terraform/tree/master/.github/workflows)
2019-02-27 17:29:14 -05:00
### External Services
2019-01-29 15:19:36 -05:00
2019-02-27 10:24:49 -05:00
- [Use a Jenkinsfile](https://github.com/jonico/jenkinsfile-runner-github-actions)
- [GitHub Action for Firebase](https://github.com/w9jds/firebase-action)
- [GitHub Action for Contentful Migration CLI](https://github.com/Shy/contentful-action)
2019-05-15 04:47:59 -04:00
- [GitHub Actions for Pixela (a-know/pi)](https://github.com/peaceiris/actions-pixela)
- [GitHub Action for Google Cloud Platform (GCP)](https://github.com/exelban/gcloud)
2019-10-01 02:25:44 -04:00
- [Upload files to any OpenStack Swift service provider](https://github.com/iksaku/openstack-swift-action)
- [GitHub Action for sending Stack Overflow posts to Slack](https://github.com/logankilpatrick/StackOverflowBot)
2019-12-04 02:30:51 -05:00
- [Assume AWS role](https://github.com/nordcloud/aws-assume-role/)
2019-01-29 15:19:36 -05:00
2019-02-27 17:29:14 -05:00
### Frontend Tools
2019-01-29 15:19:36 -05:00
2019-02-27 10:24:49 -05:00
- [Execute Gradle task](https://github.com/MrRamych/gradle-actions)
2019-02-27 10:30:46 -05:00
- [JS Build Actions](https://github.com/elstudio/actions-js-build) - Run Grunt or Gulp build tasks and commit file changes.
2019-02-27 10:24:49 -05:00
- [GitHub Action for Gatsby CLI](https://github.com/jzweifel/gatsby-cli-github-action)
- [Runs a WebPageTest audit and prints the results as commit comment](https://github.com/JCofman/webPagetestAction)
2019-05-22 03:03:52 -04:00
- [GitHub Actions for Hugo extended](https://github.com/peaceiris/actions-hugo)
- [Generate OG Image](https://github.com/BoyWithSilverWings/generate-og-image) - Generate customisable open graph images from Markdown files.
- [GitHub Actions for mdBook](https://github.com/peaceiris/actions-mdbook)
2019-01-29 15:19:36 -05:00
2019-09-25 00:55:31 -04:00
### Machine Learning Ops
2019-10-24 01:13:58 -04:00
- [Submitting Argo Workflows (Cloud Agnostic)](https://github.com/machine-learning-apps/actions-argo)
- [Submitting Argo Workflows to GKE](https://github.com/machine-learning-apps/gke-argo)
2019-09-25 16:51:34 -04:00
- [Query Experiment Tracking Results From Weights & Biases](https://github.com/machine-learning-apps/wandb-action)
2019-09-25 00:55:31 -04:00
- [Run Parameterized Jupyter Notebooks](https://github.com/yaananth/run-notebook)
2020-02-15 18:34:48 -05:00
- [Compile, Deploy and Run Kubeflow Pipeline](https://github.com/NikeNano/kubeflow-github-action)
2019-09-25 00:55:31 -04:00
### Build
2019-09-26 10:03:56 -04:00
- [run-cmake](https://github.com/lukka/run-cmake) - Multi platform action to build C/C++ software with [CMake](https://cmake.org) and [Ninja](https://ninja-build.org/).
- [run-vcpkg](https://github.com/lukka/run-vcpkg) - Multi platform action to build and install C/C++ dependencies with [vcpkg](https://github.com/microsoft/vcpkg).
- [Build Go applications for multiplatform](https://github.com/izumin5210/action-go-crossbuild)
- [Generate ~/.m2/settings.xml for Maven builds](https://github.com/whelk-io/maven-settings-xml-action)
2019-09-26 10:03:56 -04:00
### Cheat Sheet
- [GitHub Actions Branding Cheat Sheet](https://haya14busa.github.io/github-action-brandings/)
2019-02-27 17:29:14 -05:00
## Tutorials
2018-10-20 21:08:16 -04:00
- [Continuous deployment of Next.js app with Up](https://medium.com/@romanenko/simple-ci-for-next-js-projects-with-apex-up-github-actions-6f0b1b9a5400)
- [Converting Docker-based Actions to JavaScript/TypeScript](https://httgp.com/converting-github-actions-from-docker-to-javascript/)
2019-09-18 02:01:23 -04:00
- [GitHub Actions CI for Swift/iOS Projects](https://medium.com/rosberryapps/github-actions-ci-for-swift-projects-c129baceed1a)
2019-11-02 19:59:37 -04:00
- [Working with GitHub Actions](https://jeffrafter.com/working-with-github-actions)
- [GitHub Actions for Rails Developers](https://www.youtube.com/watch?v=gGUXydw22zw)
- [GitHub Actions Advent Calendar](https://www.edwardthomson.com/blog/github_actions_advent_calendar.html)
2020-02-05 02:59:45 -05:00
- [Zero Downtime Laravel Deployments with GitHub Actions](https://atymic.dev/blog/github-actions-laravel-ci-cd/)
> Please don't hesitate to make a PR if you have more resources to share. Check out [contributing.md](contributing.md) for more information
2018-11-24 12:28:09 -05:00
## License
2019-02-27 10:34:07 -05:00
[![Creative Commons License](http://mirrors.creativecommons.org/presskit/buttons/88x31/svg/cc-zero.svg)](https://creativecommons.org/publicdomain/zero/1.0/)