From 868546a54f1547435fb88556853f28f787093c0b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Falc=C3=A3o?= Date: Sun, 22 Mar 2020 19:54:51 +0100 Subject: [PATCH 01/27] Include action to setup python with pyenv --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a480ba9..dc4fc56 100644 --- a/README.md +++ b/README.md @@ -153,6 +153,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Setup `ssh-agent`](https://github.com/webfactory/ssh-agent) - Run `ssh-agent` with additional SSH keys to access private repositories. - [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 for Python project with pyenv](https://github.com/gabrielfalcao/pyenv-action) - [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. From f82a8d421ebe655f353e57f072474722f874835c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dariusz=20Rumi=C5=84ski?= Date: Sun, 29 Mar 2020 20:02:06 +0200 Subject: [PATCH 02/27] Update PHP CS Fixer name to proper one --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a480ba9..69dcf82 100644 --- a/README.md +++ b/README.md @@ -220,7 +220,7 @@ Set up your GitHub Actions workflow with a specific version of your programming #### Linting -- [PHP Code fixer Action](https://github.com/OskarStark/php-cs-fixer-ga) +- [PHP Coding Standards Fixer Action](https://github.com/OskarStark/php-cs-fixer-ga) - [Runs Hadolint against a Dockerfile within a repository](https://github.com/burdzwastaken/hadolint-action) - [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) From dd20be87e671553ac013b0c00f3eef8c7ad48e7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Pogeant?= Date: Mon, 13 Apr 2020 17:08:56 +0200 Subject: [PATCH 03/27] Add Golint action inside Linting subsection --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a10fa56..2cf4f3a 100644 --- a/README.md +++ b/README.md @@ -259,6 +259,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Linter for markdown (with presets)](https://github.com/avto-dev/markdown-lint) - [Stylelint problem matcher to create annotations](https://github.com/xt0rted/stylelint-problem-matcher) - [Run sqlcheck on the PR to identifies anti-patterns in SQL queries](https://github.com/yokawasa/action-sqlcheck) +- [Run Golint to lint your Golang code](https://github.com/Jerome1337/golint-action) #### Security From 8188148be4c519a9b4c49c453c280e6295b5fcba Mon Sep 17 00:00:00 2001 From: Yevhen Fabizhevskyi Date: Thu, 16 Apr 2020 23:16:58 +0900 Subject: [PATCH 04/27] Adding "Setup COBOL" GH action --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index aa100c4..9162d6b 100644 --- a/README.md +++ b/README.md @@ -454,8 +454,9 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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) - [Run Pascal Script](https://github.com/fabasoad/pascal-action) -- [Setup Brainfuck](https://github.com/fabasoad/brainfuck-install-action/) - Setup brainfuck interpreter. +- [Setup Brainfuck](https://github.com/fabasoad/setup-brainfuck-action) - Setup brainfuck interpreter. - [Publish Go Binaries to GitHub Release Assets](https://github.com/wangyoucao577/go-release-action) +- [Setup COBOL](https://github.com/fabasoad/setup-cobol-action) ### Database From 725acb3a01f4ba04c8c3c237dc6aecca504df512 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Pogeant?= Date: Mon, 13 Apr 2020 17:05:05 +0200 Subject: [PATCH 05/27] Add Goimports action inside Dynamic Analysis section --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index a10fa56..8e7aff1 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,7 @@ Actions are triggered by GitHub platform events directly in a repo and run on-de - [Collection of Actions](#collection-of-actions) - [Utility](#utility) - [Static Analysis](#static-analysis) + - [Dynamic Analysis](#dynamic-analysis) - [Monitoring](#monitoring) - [Pull Requests](#pull-requests) - [GitHub Pages](#github-pages) @@ -277,6 +278,10 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Publishing code coverage to CodeClimate](https://github.com/paambaati/codeclimate-action) - [Update repository go report card](https://github.com/creekorful/goreportcard-action) +### Dynamic Analysis + +- [Run Goimports to check Golang imports order](https://github.com/Jerome1337/goimports-action) + ### Monitoring - [Audit a webpage with Google Chrome's Lighthouse tests](https://github.com/jakejarvis/lighthouse-action) From dc645a16d194ad94d1b29dd8478eb25917d6b4db Mon Sep 17 00:00:00 2001 From: Lucas Bustamante Date: Tue, 21 Apr 2020 20:50:51 -0300 Subject: [PATCH 06/27] Add setup-php action --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index aa100c4..56afd3c 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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) +- [shivammathur/setup-php: PHP](https://github.com/shivammathur/setup-php) ### Create your Actions From c4d3a02bb9c558dc2f970d3a4b9ec59ec5cfd2a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carles=20N=C3=BA=C3=B1ez?= Date: Mon, 27 Apr 2020 14:46:31 +0200 Subject: [PATCH 07/27] Adding check my bundlephobia action --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4a1227a..6a8d898 100644 --- a/README.md +++ b/README.md @@ -292,6 +292,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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) - [Size Limit Action](https://github.com/andresz1/size-limit-action) - Comments cost comparison of your JS in PRs and rejects them if limit is exceeded. +- [Check my bundlephobia Action](https://github.com/carlesnunez/check-my-bundlephobia) - Comments new and modified package size according to bundlephobia.io website. Let's you also reject PR on threshold surpassed ### Pull Requests From 340cc0c113e390cccf59855db18de27a01f007bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carles=20N=C3=BA=C3=B1ez?= Date: Mon, 27 Apr 2020 15:32:45 +0200 Subject: [PATCH 08/27] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6a8d898..4cf8495 100644 --- a/README.md +++ b/README.md @@ -292,7 +292,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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) - [Size Limit Action](https://github.com/andresz1/size-limit-action) - Comments cost comparison of your JS in PRs and rejects them if limit is exceeded. -- [Check my bundlephobia Action](https://github.com/carlesnunez/check-my-bundlephobia) - Comments new and modified package size according to bundlephobia.io website. Let's you also reject PR on threshold surpassed +- [Check my bundlephobia Action](https://github.com/carlesnunez/check-my-bundlephobia) - Comments new and modified package size according to bundlephobia.io website. Let's you also reject PR on threshold surpassed. ### Pull Requests From 8d3748f97a24a30af435ca06df0b4ae7167ec8dd Mon Sep 17 00:00:00 2001 From: Yevhen Fabizhevskyi Date: Fri, 1 May 2020 12:54:04 +0900 Subject: [PATCH 09/27] Add ghacu to GitHub Tools and Management --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4a1227a..c385bae 100644 --- a/README.md +++ b/README.md @@ -134,6 +134,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Get Commit Difference Count Between Two Branches](https://github.com/jessicalostinspace/commit-difference-action) - [Generate Release Notes Based on Git References](https://github.com/metcalfc/changelog-generator) - [Enforce Policies on GitHub Repositories and Commits](https://github.com/talos-systems/conform) +- [Update configured GitHub Actions to the latest versions](https://github.com/fabasoad/ghacu) ### Collection of Actions From 89c12f3aeeeff3c61eb4db47bce6f08f6de1adc8 Mon Sep 17 00:00:00 2001 From: florisvdg Date: Fri, 1 May 2020 17:08:59 +0200 Subject: [PATCH 10/27] Add SecretHub https://github.com/secrethub/actions --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4a1227a..81a479e 100644 --- a/README.md +++ b/README.md @@ -277,6 +277,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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. - [Secrets Sync Action](https://github.com/google/secrets-sync-action) - Action syncs secrets across multiple repositories. - [Snyk Test Action](https://github.com/snyk/actions) +- [SecretHub](https://github.com/secrethub/actions) - Have a single source of truth for your secrets and load them into GitHub Actions on demand #### Code Coverage From dc54a03a379a25c21531b58552acf9a44fcb83ae Mon Sep 17 00:00:00 2001 From: florisvdg Date: Fri, 1 May 2020 17:18:24 +0200 Subject: [PATCH 11/27] Fix punctuation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81a479e..3f9ba23 100644 --- a/README.md +++ b/README.md @@ -277,7 +277,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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. - [Secrets Sync Action](https://github.com/google/secrets-sync-action) - Action syncs secrets across multiple repositories. - [Snyk Test Action](https://github.com/snyk/actions) -- [SecretHub](https://github.com/secrethub/actions) - Have a single source of truth for your secrets and load them into GitHub Actions on demand +- [SecretHub](https://github.com/secrethub/actions) - Have a single source of truth for your secrets and load them into GitHub Actions on demand. #### Code Coverage From 56d6ac82aac8306b3801c7ec619c3211c0457af7 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Tue, 5 May 2020 07:52:14 +0300 Subject: [PATCH 12/27] Add setup-xcode action --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4a1227a..8ecaf91 100644 --- a/README.md +++ b/README.md @@ -193,6 +193,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Has Changed Path](https://github.com/MarceloPrado/has-changed-path) - Conditionally run actions based on changed paths. - [Linguist](https://github.com/fabasoad/linguist-action) - Checks a repository and produces information about used languages in output. - [Twilio Voice Call](https://github.com/fabasoad/twilio-voice-call-action/) - Make Twilio voice call with defined text. +- [Setup Xcode](https://github.com/maxim-lobanov/setup-xcode) - Switch between pre-installed versions of Xcode for macOS images - [Setup Xamarin](https://github.com/maxim-lobanov/setup-xamarin) - Switch between pre-installed versions of Xamarin and Mono for macOS images. - [Memer Action](https://github.com/Bhupesh-V/memer-action) - A GitHub Action for Programmer Memes xD. - [Setup Cocoapods](https://github.com/maxim-lobanov/setup-cocoapods) - Setup specific version of Cocoapods. From 7e866cc58612215d0facf7b1fe5575e9470549aa Mon Sep 17 00:00:00 2001 From: Yevhen Fabizhevskyi Date: Thu, 7 May 2020 11:45:37 +0900 Subject: [PATCH 13/27] Add Twilio Fax to Utility --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4a1227a..7e44147 100644 --- a/README.md +++ b/README.md @@ -197,6 +197,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Memer Action](https://github.com/Bhupesh-V/memer-action) - A GitHub Action for Programmer Memes xD. - [Setup Cocoapods](https://github.com/maxim-lobanov/setup-cocoapods) - Setup specific version of Cocoapods. - [Public IP](https://github.com/haythem/public-ip) - Queries GitHub actions runner's public IP address. +- [Twilio Fax](https://github.com/fabasoad/twilio-fax-action/) - Sends a document by fax using your Twilio account. #### Environments From b025cb295a06cf114dd378965a8eddb0b6c5afe1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 8 May 2020 14:15:47 +0200 Subject: [PATCH 14/27] Fix: Name and reference --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4a1227a..6c3b767 100644 --- a/README.md +++ b/README.md @@ -245,7 +245,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [JavaScript-based linter for \*.workflow files](https://github.com/OmarTawfik/github-actions-js) - [Lint terraform files using tflint, with reviewdog output on the PR](https://github.com/reviewdog/action-tflint) - [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 `ergebnis/composer-normalize` to ensure your PHP project has a normalized `composer.json`](https://github.com/ergebnis/composer-normalize-action) - [Run Go lint checks on PR event](https://github.com/ArangoGutierrez/GoLinty-Action) - [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) From 5dde52974d16e5c0f36afe1aafe94572506a0f28 Mon Sep 17 00:00:00 2001 From: Damien Senger Date: Sun, 10 May 2020 15:02:34 +0200 Subject: [PATCH 15/27] Add Highlight New NPM Dependencies action This commit introduces the [Highlight New NPM Dependencies](https://github.com/hiwelo/new-dependencies-action) to this list of GitHub actions, in the `Dependencies` section. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 75c6119..fb0e78b 100644 --- a/README.md +++ b/README.md @@ -213,6 +213,7 @@ Set up your GitHub Actions workflow with a specific version of your programming #### Dependencies - [Install NPM dependencies with caching](https://github.com/bahmutov/npm-install) +- [Highlight New NPM Dependencies](https://github.com/hiwelo/new-dependencies-action) - Comment pull requests with information about new NPM dependencies added. #### Semantic Versioning From c418fa6553ce439c629c10be51a1bd518f11d461 Mon Sep 17 00:00:00 2001 From: Maxim Lobanov Date: Tue, 12 May 2020 21:14:06 +0300 Subject: [PATCH 16/27] Fix punctuation --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8ecaf91..d608f34 100644 --- a/README.md +++ b/README.md @@ -193,7 +193,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Has Changed Path](https://github.com/MarceloPrado/has-changed-path) - Conditionally run actions based on changed paths. - [Linguist](https://github.com/fabasoad/linguist-action) - Checks a repository and produces information about used languages in output. - [Twilio Voice Call](https://github.com/fabasoad/twilio-voice-call-action/) - Make Twilio voice call with defined text. -- [Setup Xcode](https://github.com/maxim-lobanov/setup-xcode) - Switch between pre-installed versions of Xcode for macOS images +- [Setup Xcode](https://github.com/maxim-lobanov/setup-xcode) - Switch between pre-installed versions of Xcode for macOS images. - [Setup Xamarin](https://github.com/maxim-lobanov/setup-xamarin) - Switch between pre-installed versions of Xamarin and Mono for macOS images. - [Memer Action](https://github.com/Bhupesh-V/memer-action) - A GitHub Action for Programmer Memes xD. - [Setup Cocoapods](https://github.com/maxim-lobanov/setup-cocoapods) - Setup specific version of Cocoapods. From 598e5d4c5a8c6a74df843e16b99f6a8d55d69db8 Mon Sep 17 00:00:00 2001 From: Yevhen Fabizhevskyi Date: Wed, 27 May 2020 09:07:39 +0900 Subject: [PATCH 17/27] Fixes after code review --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 91dadd3..0e1f510 100644 --- a/README.md +++ b/README.md @@ -135,7 +135,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Generate Release Notes Based on Git References](https://github.com/metcalfc/changelog-generator) - [Enforce Policies on GitHub Repositories and Commits](https://github.com/talos-systems/conform) - [Auto Label Issue Based on Issue Description](https://github.com/Renato66/auto-label) -- [Update configured GitHub Actions to the latest versions](https://github.com/fabasoad/ghacu) +- [Update Configured GitHub Actions to the Latest Versions](https://github.com/fabasoad/ghacu) ### Collection of Actions From e80091ae8774631a1b95701d24bba78bbc3d3179 Mon Sep 17 00:00:00 2001 From: Jessica Date: Wed, 27 May 2020 10:57:10 -0700 Subject: [PATCH 18/27] Remove dead link Removed https://github.community/t5/GitHub-Actions/bd-p/actions --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index 6a44777..1de8f53 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,6 @@ Actions are triggered by GitHub platform events directly in a repo and run on-de ## Official Resources - [Official Site](https://github.com/features/actions) -- [Official Community Forum Board](https://github.community/t5/GitHub-Actions/bd-p/actions) - [Official Documentation](https://help.github.com/en/actions) - [Official Actions organization](https://github.com/actions) - [actions/virtual-environments](https://github.com/actions/virtual-environments) - GitHub Actions virtual environments. From fe03967f7208a1229c74af0782b3d1cb3b8470e1 Mon Sep 17 00:00:00 2001 From: Jessica Date: Wed, 27 May 2020 11:09:38 -0700 Subject: [PATCH 19/27] Edited bundlephobia title and description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4cf8495..f8b0c72 100644 --- a/README.md +++ b/README.md @@ -292,7 +292,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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) - [Size Limit Action](https://github.com/andresz1/size-limit-action) - Comments cost comparison of your JS in PRs and rejects them if limit is exceeded. -- [Check my bundlephobia Action](https://github.com/carlesnunez/check-my-bundlephobia) - Comments new and modified package size according to bundlephobia.io website. Let's you also reject PR on threshold surpassed. +- [Check bundlephobia](https://github.com/carlesnunez/check-my-bundlephobia) - Comments new and modified package size according to bundlephobia.io website and rejects PR on threshold surpassed. ### Pull Requests From 04d0a755b272482abfa40202e58dcc5964a95993 Mon Sep 17 00:00:00 2001 From: Jessica Date: Wed, 27 May 2020 11:20:29 -0700 Subject: [PATCH 20/27] Revert "Add setup-php action" --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index b9b3347..1cede80 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,6 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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) -- [shivammathur/setup-php: PHP](https://github.com/shivammathur/setup-php) ### Create your Actions From 525b73fe952d2fbf14254733b578b53da737bedf Mon Sep 17 00:00:00 2001 From: rlespinasse Date: Thu, 28 May 2020 10:28:45 +0200 Subject: [PATCH 21/27] Add 'git-commit-data-action' action --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 7554853..05f9186 100644 --- a/README.md +++ b/README.md @@ -135,6 +135,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Enforce Policies on GitHub Repositories and Commits](https://github.com/talos-systems/conform) - [Auto Label Issue Based on Issue Description](https://github.com/Renato66/auto-label) - [Update Configured GitHub Actions to the Latest Versions](https://github.com/fabasoad/ghacu) +- [Expose Git Commit Data As Environment Variables](https://github.com/rlespinasse/git-commit-data-action) ### Collection of Actions From c33393d5b61a6329725e09ddff9c67bf5a541711 Mon Sep 17 00:00:00 2001 From: Jan Zenkner Date: Wed, 10 Jun 2020 18:05:03 +0000 Subject: [PATCH 22/27] Update terraform action collection The old collection was superseded by a setup-terraform --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7554853..533b8b1 100644 --- a/README.md +++ b/README.md @@ -138,7 +138,7 @@ Set up your GitHub Actions workflow with a specific version of your programming ### Collection of Actions -- [Use HashiCorp's Terraform](https://github.com/hashicorp/terraform-github-actions) +- [Use HashiCorp's Terraform](https://github.com/hashicorp/setup-terraform) - [GitHub Actions for Yarn 1](https://github.com/Borales/actions-yarn) - [GitHub Actions for Yarn 2](https://github.com/sergioramos/yarn-actions) - [GitHub Actions for Golang](https://github.com/cedrickring/golang-action) From ddfe15844ca30cfbe0bad699ec7e6fac04d08883 Mon Sep 17 00:00:00 2001 From: Jeroen Knoops Date: Sun, 14 Jun 2020 15:57:09 +0100 Subject: [PATCH 23/27] Add link how to setup self-hosted runners Add link to tutorial how to setup auto-scaled self-hosted github actions runners. https://040code.github.io/2020/05/25/scaling-selfhosted-action-runners --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 533b8b1..2a34ede 100644 --- a/README.md +++ b/README.md @@ -490,6 +490,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Zero Downtime Laravel Deployments with GitHub Actions](https://atymic.dev/blog/github-actions-laravel-ci-cd/) - [Building Custom GitHub Actions Pluralsight Course](https://www.pluralsight.com/courses/building-custom-github-actions/) - [Continuously Deploying Django to DigitalOcean with Docker and GitHub Actions](https://testdriven.io/blog/deploying-django-to-digitalocean-with-docker-and-github-actions/) +- [Setup Auto-scaled self-hosted GitHub Actions Runners on AWS Spot-instances](https://040code.github.io/2020/05/25/scaling-selfhosted-action-runners) > Please don't hesitate to make a PR if you have more resources to share. Check out [contributing.md](contributing.md) for more information From 017ef2710427014599ef77a36ddedd7131c25f86 Mon Sep 17 00:00:00 2001 From: Csaba Apagyi Date: Sun, 28 Jun 2020 15:10:46 +0200 Subject: [PATCH 24/27] Add Reply to Stale Bots https://github.com/c-hive/fresh-bot --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2a34ede..84e8711 100644 --- a/README.md +++ b/README.md @@ -359,6 +359,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Create an Outlook Calendar Event using Microsoft Graph](https://github.com/anoopt/ms-graph-create-event) - [Watch for GitHub Wiki page changes and post to Slack](https://github.com/benmatselby/gollum-page-watcher-action) - [Send an SMS using MessageBird](https://github.com/nikitasavinov/messagebird-sms-action) +- [Reply to Stale Bots](https://github.com/c-hive/fresh-bot) ### Deployment From 8c5b34b65336a8f2ba9c2deba60e16993059f68e Mon Sep 17 00:00:00 2001 From: jonelantha <57597570+jonelantha@users.noreply.github.com> Date: Mon, 27 Jul 2020 18:32:12 +0100 Subject: [PATCH 25/27] Add gatsby-s3-action Deployment Action --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2a34ede..88aaa6f 100644 --- a/README.md +++ b/README.md @@ -446,6 +446,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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) - [Setup Mint](https://github.com/fabasoad/setup-mint-action) - Setup Mint (programming language for writing single page applications). +- [Gatsby AWS S3 Deployment](https://github.com/jonelantha/gatsby-s3-action) - Deploy Gatsby to S3 (supports CloudFront). ### Machine Learning Ops From aac999692f5fac722805890e1913696269e7790c Mon Sep 17 00:00:00 2001 From: Sarah Drasner Date: Thu, 27 Aug 2020 16:06:45 -0600 Subject: [PATCH 26/27] Remove duplicate link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6da25a2..7e85bbf 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ # Awesome Actions [![Awesome](https://cdn.rawgit.com/sindresorhus/awesome/d7305f38d29fed78fa85652e3a63e154dd8e8829/media/badge.svg)](https://github.com/sindresorhus/awesome) [![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) -> A curated list of awesome things related to [GitHub Actions](https://github.com/actions). +> A curated list of awesome things related to GitHub Actions. 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. From 3149665bacd5a729a0eea8185b30ffdc9457b7b4 Mon Sep 17 00:00:00 2001 From: Sarah Drasner Date: Thu, 27 Aug 2020 16:16:16 -0600 Subject: [PATCH 27/27] Clarify description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fb0e78b..272fe52 100644 --- a/README.md +++ b/README.md @@ -213,7 +213,7 @@ Set up your GitHub Actions workflow with a specific version of your programming #### Dependencies - [Install NPM dependencies with caching](https://github.com/bahmutov/npm-install) -- [Highlight New NPM Dependencies](https://github.com/hiwelo/new-dependencies-action) - Comment pull requests with information about new NPM dependencies added. +- [Highlight New NPM Dependencies](https://github.com/hiwelo/new-dependencies-action) - Comments on pull requests newly added NPM dependencies information. #### Semantic Versioning