From e05f7daddf151a954781e5a3513925ac43af100d Mon Sep 17 00:00:00 2001 From: Yevhen Fabizhevskyi Date: Mon, 16 Mar 2020 09:59:54 +0900 Subject: [PATCH 01/13] Added YAML/JSON/XML converter action --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a480ba9..4fb7d12 100644 --- a/README.md +++ b/README.md @@ -180,6 +180,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Apply templates with Jinja2](https://github.com/cuchi/jinja2-action) - Use the Jinja2 template engine to generate files from templates. - [Has Changes](https://github.com/UnicornGlobal/has-changes-action) - Check if there are code changes from previous steps. - [Mind Your Language Action](https://github.com/tailaiw/mind-your-language-action) - Detect offensive comments in issues and pull requests, and warn senders. +- [YAML/JSON/XML Converter](https://github.com/fabasoad/yaml-json-xml-converter-action) - Takes file that in YAML/JSON/XML format and produces it in output in YAML/JSON/XML format. #### Environments From 3a7915fe4bb3abe0c173c3fd1f7b136200397935 Mon Sep 17 00:00:00 2001 From: Yevhen Fabizhevskyi Date: Thu, 19 Mar 2020 06:54:53 +0900 Subject: [PATCH 02/13] Fixes after code review --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4fb7d12..966f5ab 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Apply templates with Jinja2](https://github.com/cuchi/jinja2-action) - Use the Jinja2 template engine to generate files from templates. - [Has Changes](https://github.com/UnicornGlobal/has-changes-action) - Check if there are code changes from previous steps. - [Mind Your Language Action](https://github.com/tailaiw/mind-your-language-action) - Detect offensive comments in issues and pull requests, and warn senders. -- [YAML/JSON/XML Converter](https://github.com/fabasoad/yaml-json-xml-converter-action) - Takes file that in YAML/JSON/XML format and produces it in output in YAML/JSON/XML format. +- [YAML/JSON/XML Converter](https://github.com/fabasoad/yaml-json-xml-converter-action) - Converts YAML/JSON/XML file formats interchangeably. #### Environments From 0f5c654013523c575335fc9c1ad1398f70a487da Mon Sep 17 00:00:00 2001 From: Andres Alvarez Date: Sat, 21 Mar 2020 12:03:58 +0100 Subject: [PATCH 03/13] Add size-limit-action to README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a480ba9..3134847 100644 --- a/README.md +++ b/README.md @@ -270,6 +270,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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) +- [Size Limit Action](https://github.com/andresz1/size-limit-action) - Compares the real cost of your JS in every PR and rejects it if exceeds the limit using [Size Limit](https://github.com/ai/size-limit) ### Pull Requests From 6ca3b110e822d3b6d86608e42e6b595dd6a7843d Mon Sep 17 00:00:00 2001 From: Yevhen Fabizhevskyi Date: Mon, 23 Mar 2020 13:19:00 +0900 Subject: [PATCH 04/13] Trigger build --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 966f5ab..94f2f47 100644 --- a/README.md +++ b/README.md @@ -180,7 +180,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Apply templates with Jinja2](https://github.com/cuchi/jinja2-action) - Use the Jinja2 template engine to generate files from templates. - [Has Changes](https://github.com/UnicornGlobal/has-changes-action) - Check if there are code changes from previous steps. - [Mind Your Language Action](https://github.com/tailaiw/mind-your-language-action) - Detect offensive comments in issues and pull requests, and warn senders. -- [YAML/JSON/XML Converter](https://github.com/fabasoad/yaml-json-xml-converter-action) - Converts YAML/JSON/XML file formats interchangeably. +- [YAML/JSON/XML Converter](https://github.com/fabasoad/yaml-json-xml-converter-action) - Converts YAML/JSON/XML file formats interchangeably. #### Environments From 6e06df6e1e26b914ff4f41ee9f248fb5eb67e37c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=2E=20R=C3=BCger?= Date: Wed, 25 Mar 2020 13:49:49 -1000 Subject: [PATCH 05/13] Add NativeScript Setup Action Adds [this action](https://github.com/marketplace/actions/setup-nativescript) to the list. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a480ba9..d2de584 100644 --- a/README.md +++ b/README.md @@ -187,6 +187,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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) +- [Setup NativeScript](https://github.com/marketplace/actions/setup-nativescript) #### Dependencies From aafc5e273fa1836b93458ece215f07447dddfade Mon Sep 17 00:00:00 2001 From: Marcelo T Prado Date: Thu, 26 Mar 2020 11:45:53 -0300 Subject: [PATCH 06/13] add has-changed-path --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a480ba9..c936992 100644 --- a/README.md +++ b/README.md @@ -180,6 +180,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Apply templates with Jinja2](https://github.com/cuchi/jinja2-action) - Use the Jinja2 template engine to generate files from templates. - [Has Changes](https://github.com/UnicornGlobal/has-changes-action) - Check if there are code changes from previous steps. - [Mind Your Language Action](https://github.com/tailaiw/mind-your-language-action) - Detect offensive comments in issues and pull requests, and warn senders. +- [Has Changed Path](https://github.com/MarceloPrado/has-changed-path) - Conditionally run actions based on changed paths. #### Environments From 1fda1673c6ef81e123b6ebfec1bfba367275a0ef Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Fri, 20 Mar 2020 13:11:17 +0300 Subject: [PATCH 07/13] Adds misspell-fixer-action Link: https://github.com/sobolevn/misspell-fixer-action Marketplace: https://github.com/marketplace/actions/misspell-fixer-action --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index caee71b..d691351 100644 --- a/README.md +++ b/README.md @@ -31,6 +31,7 @@ Actions are triggered by GitHub platform events directly in a repo and run on-de - [Machine Learning Ops](#machine-learning-ops) - [Build](#build) - [Database](#database) + - [Localization](#localization) - [Cheat Sheet](#cheat-sheet) - [Tutorials](#tutorials) @@ -426,6 +427,10 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Setup Cassandra Schema](https://github.com/fabasoad/setup-cassandra-action) - Running scripts from the provided folder on top of Cassandra cluster. +### Localiation + +- [Find and automatically fix typos and grammar issues in your code](https://github.com/sobolevn/misspell-fixer-action) + ### Cheat Sheet - [GitHub Actions Branding Cheat Sheet](https://haya14busa.github.io/github-action-brandings/) From 1b5934db7576183894dc7bad2d6b3a2630008355 Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Fri, 20 Mar 2020 14:12:38 +0300 Subject: [PATCH 08/13] Update README.md Co-Authored-By: Pedro Augusto de Paula Barbosa --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d691351..c1ddf55 100644 --- a/README.md +++ b/README.md @@ -427,7 +427,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Setup Cassandra Schema](https://github.com/fabasoad/setup-cassandra-action) - Running scripts from the provided folder on top of Cassandra cluster. -### Localiation +### Localization - [Find and automatically fix typos and grammar issues in your code](https://github.com/sobolevn/misspell-fixer-action) From c373e3e1b6ef179376ea0737b7823b8b5e4cff49 Mon Sep 17 00:00:00 2001 From: Pablo Espinosa Date: Mon, 30 Mar 2020 12:39:08 +0100 Subject: [PATCH 09/13] Fixed link to Discord Github Action --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c87ab48..9b92507 100644 --- a/README.md +++ b/README.md @@ -316,7 +316,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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) +- [Send a File or Text Message to Discord (custom define color, username or avatar)](https://github.com/appleboy/discord-action) - [Collaborate on tweets using pull requests](https://github.com/gr2m/twitter-together) - [Send a Push Notification via Push by Techulus](https://github.com/techulus/push-github-action) - [Send email with SendGrid](https://github.com/peter-evans/sendgrid-action) From 535438b34ac6601e6b7b1c8ec3c6d9ff37e92e98 Mon Sep 17 00:00:00 2001 From: Chad Metcalf Date: Sat, 28 Mar 2020 15:51:26 -0700 Subject: [PATCH 10/13] Add metcalfc/changelog-generator. This action generates a markdown formatted list of commits between two git references. The other changelog generators in this list use milestones. This one can use tags, branches, SHAs. By default it uses the action triggering SHA and the latest release tag. Making for easy release automation. --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a480ba9..702973c 100644 --- a/README.md +++ b/README.md @@ -129,6 +129,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [Rollback a GitHub Release](https://github.com/author/action-rollback) - [Lock Closed Issues and Pull Requests after a Period of Inactivity](https://github.com/dessant/lock-threads) - [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) ### Collection of Actions From 8c59c2e6bcf101b0cfdea6fe186f2bba2ac8ed31 Mon Sep 17 00:00:00 2001 From: Andres Alvarez Date: Mon, 30 Mar 2020 18:44:37 +0200 Subject: [PATCH 11/13] Change size-limit-action description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3134847..1534995 100644 --- a/README.md +++ b/README.md @@ -270,7 +270,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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) -- [Size Limit Action](https://github.com/andresz1/size-limit-action) - Compares the real cost of your JS in every PR and rejects it if exceeds the limit using [Size Limit](https://github.com/ai/size-limit) +- [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 ### Pull Requests From 25b05557e86542557a451f77eea69689d01121dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=2E=20R=C3=BCger?= Date: Mon, 30 Mar 2020 07:12:07 -1000 Subject: [PATCH 12/13] fixed link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d2de584..f0a3dd3 100644 --- a/README.md +++ b/README.md @@ -187,7 +187,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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) -- [Setup NativeScript](https://github.com/marketplace/actions/setup-nativescript) +- [Setup NativeScript](https://github.com/hrueger/setup-nativescript) #### Dependencies From 5600080638523804a4dcd9e994b6bfc80d7c55ef Mon Sep 17 00:00:00 2001 From: Andres Alvarez Date: Mon, 30 Mar 2020 19:51:02 +0200 Subject: [PATCH 13/13] Fix linting error --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 35d34fd..328f33f 100644 --- a/README.md +++ b/README.md @@ -271,7 +271,7 @@ Set up your GitHub Actions workflow with a specific version of your programming - [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) -- [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 +- [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. ### Pull Requests