An open API service indexing awesome lists of open source software.

https://github.com/LadyKerr/codespaces-actions-playground

Demos for "There's an action or that!" 💡 talk
https://github.com/LadyKerr/codespaces-actions-playground

github-actions template

Last synced: 3 months ago
JSON representation

Demos for "There's an action or that!" 💡 talk

Awesome Lists containing this project

README

        

# There's an Action for That! Exploring the possibilities of GitHub Actions 💡

[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://github.com/codespaces/new?hide_repo_select=true&ref=main&repo=623718616&machine=standardLinux32gb&devcontainer_path=.devcontainer%2Fdevcontainer.json&location=EastUs)

This repo contains resources and demos for the talk "There's an Action for That! Exploring the possibilitis of GitHub Actions" that I presented.

# Slides ✨

The slides for the talk can be found here:
[Click There's an action for that](https://www.canva.com/design/DAFfRK5vJ-U/9Y_mizbL-dLBm0g69LuZHQ/view?utm_content=DAFfRK5vJ-U&utm_campaign=designshare&utm_medium=link&utm_source=publishsharelink)

# Repository Content 📔

This repository contains simple demos and pipelines showcasing the use of GitHub Actions in various scenarios and is based on the [GitHub Actions Playground](https://github.com/github/codespaces-actions-playground) guide.

# Resources 📚

- [GitHub Actions Documentation](https://docs.github.com/en/actions)
- [GitHub Skills](https://github.com/skills/hello-github-actions)
- [List of awesome actions to explore](https://github.com/sdras/awesome-actions)
- [Send a text message with GitHub Actions](https://github.com/marketplace/actions/twilio-sms)

```yaml
- name: Send SMS with twilio
uses: twilio-labs/actions-sms@v1
with:
fromPhoneNumber: ${{ secrets.TWILIO_PHONE_NUMBER }}
toPhoneNumber: ${{ secrets.MY_PHONE_NUMBER }}
message: "Hello from GitHub Actions via Twilio"
env:
TWILIO_ACCOUNT_SID: ${{ secrets.TWILIO_ACCOUNT_SID }}
TWILIO_API_KEY: ${{ secrets.TWILIO_API_KEY }}
TWILIO_API_SECRET: ${{ secrets.TWILIO_API_SECRET }}
```