Compare commits

...

15 Commits

Author SHA1 Message Date
felipe.fuerback
5f58d4794c
Merge 3cd770bf92 into 0edccf3348 2024-09-28 00:03:47 +07:00
Sarah Drasner
0edccf3348
Merge pull request #511 from YongHeeK/patch-1
add Julia actions
2024-09-01 14:32:39 -06:00
Sarah Drasner
93fb8e1a8a
Merge pull request #632 from PabloLec/patch-1
Add website-to-gif
2024-09-01 14:32:07 -06:00
Sarah Drasner
70cff98cd2
Merge branch 'main' into patch-1 2024-09-01 14:28:16 -06:00
Sarah Drasner
1084a60245
Merge pull request #619 from madhead/madhead/check-gradle-version
Add madhead/check-gradle-version to the "Build" section
2024-09-01 14:27:30 -06:00
Sarah Drasner
eae7837eb6
Merge pull request #636 from someara/main
add link to ZeroTier action
2024-09-01 14:26:51 -06:00
Sarah Drasner
70c83713af
Merge pull request #652 from raphaelstolt/lean-package-validator-action-addition
Add new lint action
2024-09-01 14:26:20 -06:00
Sarah Drasner
3a05ad0c09
Merge pull request #658 from ooaklee/main
Add runtime inputs to Github Action workflows/ actions
2024-09-01 14:25:51 -06:00
Leon Silcott
5153ef3433 Add an action for Interactive Inputs 2024-09-01 20:37:45 +01:00
Raphael Stolt
500edcc786 Add new lint action 2023-11-01 13:30:37 +01:00
Sean OMeara
faf5be77dc
Update README.md
Co-authored-by: Stephen Edgar <stephen@netweb.com.au>
2023-01-24 09:35:47 +01:00
Sean OMeara
f0c3700d87 add link to ZeroTier action 2022-12-18 14:28:39 +01:00
Pablo Lecolinet
4f1f75202a
Update README.md 2022-11-02 17:15:37 +01:00
Siarhei
ba4382238b
Add madhead/check-gradle-version to the "Build" section 2022-09-18 19:21:41 +02:00
YongHee Kim
560d10fe94
add Julia actions 2020-11-11 11:23:03 +09:00

View File

@ -32,6 +32,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)
- [Networking](#networking)
- [Localization](#localization)
- [Fun](#fun)
- [Cheat Sheet](#cheat-sheet)
@ -90,6 +91,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)
- [actions/setup-julia: Julia](https://github.com/julia-actions/setup-julia)
### Create your Actions
@ -228,6 +230,8 @@ Set up your GitHub Actions workflow with a specific version of your programming
- [GitHub Action Locks](https://github.com/abatilo/github-action-locks/blob/master/README.md) - Guarantee atomic execution of your GitHub Action workflows.
- [Paths Filter](https://github.com/dorny/paths-filter) - Conditionally run actions based on files modified by PR, feature branch or pushed commits.
- [Minisauras](https://github.com/TeamTigers/minisauras) - Pulls all the JavaScript and CSS files from your base branch, minify them and creates a pull-request with a new branch.
- [Website to GIF](https://github.com/PabloLec/website-to-gif) - Turn any webpage into a GIF to display on your README, docs, etc.
- [Interactive Inputs - Runtime workflow inputs](https://github.com/boasiHQ/interactive-inputs) - Add dynamic inputs at runtime for your GitHub Actions workflows
#### Environments
@ -272,6 +276,7 @@ Set up your GitHub Actions workflow with a specific version of your programming
- [Run performance testing with artillery.io](https://github.com/kenju/github-actions-artillery)
- [Detect Flaky Tests with BuildPulse](https://github.com/Workshop64/buildpulse-action)
- [Display Inline Code Annotations for Jest Tests](https://github.com/IgnusG/jest-report-action)
- [Run Julia tests](https://github.com/julia-actions/julia-runtest)
#### Linting
@ -282,6 +287,7 @@ Set up your GitHub Actions workflow with a specific version of your programming
- [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 `ergebnis/composer-normalize` to ensure your PHP project has a normalized `composer.json`](https://github.com/ergebnis/composer-normalize-action)
- [Run `stolt/lean-package-validator` to ensure your package has only the required `runtime` artifacts](https://github.com/raphaelstolt/lean-package-validator-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)
@ -526,11 +532,16 @@ Set up your GitHub Actions workflow with a specific version of your programming
- [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)
- [Check Gradle version](https://github.com/madhead/check-gradle-version) - Keep your Gradle version up to date.
### Database
- [Setup Cassandra Schema](https://github.com/fabasoad/setup-cassandra-action) - Running scripts from the provided folder on top of Cassandra cluster.
### Networking
- [Setup ZeroTier](https://github.com/zerotier/github-action) - Connect your runner to a ZeroTier network.
### Localization
- [Find and automatically fix typos and grammar issues in your code](https://github.com/sobolevn/misspell-fixer-action)