docs: update setup sections (#3)

This commit is contained in:
Romain Lespinasse 2025-03-03 13:42:01 +01:00 committed by GitHub
parent 758954d08f
commit 64a577c962
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,6 +23,7 @@ Actions are triggered by GitHub platform events directly in a repo and run on-de
- [Official Actions](#official-actions)
- [Create your Actions](#create-your-actions)
- [Community Resources](#community-resources)
- [Setup Actions](#setup-actions)
- [GitHub Tools and Management](#github-tools-and-management)
- [Collection of Actions](#collection-of-actions)
- [Utility](#utility)
@ -80,7 +81,7 @@ Automate management for issues, pull requests, and releases.
- [actions/labeler](https://github.com/actions/labeler) - An action for automatically labelling pull requests.
- [actions/delete-package-versions](https://github.com/actions/delete-package-versions) - Delete versions of a package from GitHub Packages.
#### Setup Actions
#### Official Setup Actions
Set up your GitHub Actions workflow with a specific version of your programming languages.
@ -114,6 +115,14 @@ Set up your GitHub Actions workflow with a specific version of your programming
## Community Resources
### Setup Actions
- [Setup Haskell](https://github.com/haskell-actions/setup) - Setting up GHC, cabal, stack on for Haskell-related CIs.
- [Setup Haskell hlint](https://github.com/haskell-actions/hlint-setup) - Reusable GitHub Action to set up hlint in a workflow. Use with haskell-actions/hlint-run.
- [Setup Ruby](https://github.com/ruby/setup-ruby) - Download a prebuilt Ruby and add it to the PATH in 5 seconds.
- [Setup Elixir](https://github.com/erlef/setup-beam) - Set up your BEAM-based GitHub Actions workflow (Erlang, Elixir, Gleam, and so on).
- [Setup Julia](https://github.com/julia-actions/setup-julia) - Sets up a Julia environment for use in actions by downloading a specified version of Julia and adding it to PATH.
### GitHub Tools and Management
- [Declaratively setup GitHub Labels](https://github.com/lannonbr/issue-label-manager-action)