mirror of
https://github.com/sdras/awesome-actions.git
synced 2025-04-09 17:39:14 -04:00
docs: cleanup archived or moved official repositories (#2)
This commit is contained in:
parent
8c00367c6d
commit
758954d08f
37
README.md
37
README.md
@ -20,7 +20,6 @@ Actions are triggered by GitHub platform events directly in a repo and run on-de
|
||||
## Contents
|
||||
|
||||
- [Official Resources](#official-resources)
|
||||
- [Workflow Examples](#workflow-examples)
|
||||
- [Official Actions](#official-actions)
|
||||
- [Create your Actions](#create-your-actions)
|
||||
- [Community Resources](#community-resources)
|
||||
@ -45,30 +44,27 @@ Actions are triggered by GitHub platform events directly in a repo and run on-de
|
||||
- [Cheat Sheet](#cheat-sheet)
|
||||
- [Tutorials](#tutorials)
|
||||
|
||||
<!--lint disable no-undefined-references-->
|
||||
> [!TIP]
|
||||
> Please don't hesitate to make a PR if you have more resources to share. Check out [contributing.md](contributing.md) for more information.
|
||||
<!--lint enable no-undefined-references-->
|
||||
|
||||
## Official Resources
|
||||
|
||||
- [Official Site](https://github.com/features/actions)
|
||||
- [Official Documentation](https://help.github.com/en/actions)
|
||||
- [Official GitHub Blog Announcement](https://github.blog/enterprise-software/automation/action-demos/)
|
||||
- [Official Actions organization](https://github.com/actions)
|
||||
- [actions/virtual-environments](https://github.com/actions/virtual-environments) - GitHub Actions virtual environments.
|
||||
- [actions/virtual-environments](https://github.com/actions/runner-images) - GitHub Actions runner images.
|
||||
- [actions/runner](https://github.com/actions/runner) - The Runner for GitHub Actions.
|
||||
- [GitHub Blog Announcement](https://github.blog/2018-10-17-action-demos/)
|
||||
|
||||
### 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.
|
||||
- [actions/starter-workflows](https://github.com/actions/starter-workflows) - Starter workflow management.
|
||||
|
||||
### Official Actions
|
||||
|
||||
<!--lint disable no-dead-urls-->
|
||||
|
||||
#### Workflow Tool Actions
|
||||
|
||||
Tool actions for your workflow.
|
||||
|
||||
<!--lint ignore awesome-spell-check-->
|
||||
|
||||
- [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.
|
||||
@ -79,8 +75,6 @@ Tool actions for your workflow.
|
||||
|
||||
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.
|
||||
@ -94,11 +88,7 @@ Set up your GitHub Actions workflow with a specific version of your programming
|
||||
- [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)
|
||||
- [actions/setup-julia: Julia](https://github.com/julia-actions/setup-julia)
|
||||
|
||||
### Create your Actions
|
||||
|
||||
@ -108,13 +98,20 @@ Set up your GitHub Actions workflow with a specific version of your programming
|
||||
- [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.
|
||||
|
||||
#### 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-action](https://github.com/actions/container-action) - Bootstrap the creation of a container action.
|
||||
- [actions/container-toolkit-action](https://github.com/actions/container-toolkit-action) - Template repo for creating container actions using actions/toolkit.
|
||||
|
||||
#### Composite Actions
|
||||
|
||||
<!--lint disable no-undefined-references-->
|
||||
> [!NOTE]
|
||||
> No links for this kind of actions. Please don't hesitate to contribute.
|
||||
<!--lint enable no-undefined-references-->
|
||||
|
||||
## Community Resources
|
||||
|
||||
### GitHub Tools and Management
|
||||
@ -576,5 +573,3 @@ Set up your GitHub Actions workflow with a specific version of your programming
|
||||
- [Deploying Self-Hosted GitHub Actions Runners with Docker](https://testdriven.io/blog/github-actions-docker/) - Deploy self-hosted GitHub Actions runners with Docker and Docker Swarm to DigitalOcean.
|
||||
- [Setup Auto-scaled self-hosted GitHub Actions Runners on AWS Spot-instances](https://040code.github.io/2020/05/25/scaling-selfhosted-action-runners)
|
||||
- [Getting the Gist of GitHub Actions](https://gist.github.com/br3ndonland/f9c753eb27381f97336aa21b8d932be6)
|
||||
|
||||
> Please don't hesitate to make a PR if you have more resources to share. Check out [contributing.md](contributing.md) for more information.
|
||||
|
Loading…
x
Reference in New Issue
Block a user