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
- Host: GitHub
- URL: https://github.com/LadyKerr/codespaces-actions-playground
- Owner: LadyKerr
- License: mit
- Created: 2023-04-05T00:04:50.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-22T06:54:28.000Z (over 1 year ago)
- Last Synced: 2024-12-30T00:50:46.073Z (4 months ago)
- Topics: github-actions, template
- Language: HTML
- Homepage: https://ladykerr.github.io/codespaces-actions-playground/
- Size: 7.58 MB
- Stars: 24
- Watchers: 3
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - LadyKerr/codespaces-actions-playground - Demos for "There's an action or that!" 💡 talk (HTML)
README
# There's an Action for That! Exploring the possibilities of GitHub Actions 💡
[](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 }}
```