aaronccasanova / actions-playground

GitHub actions playground

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub Actions Playground

Events

Actions

  • GitHub market place
  • The same repository as your workflow file
  • Any public repository
  • A published Docker container image on Docker Hub

Adding an action from the same repository

Reference the action with either the {owner}/{repo}@{ref} or ./path/to/dir syntax in your workflow file.

|-- actions-playground
|   |__ .github
|       |__ workflows
|           |__ my-workflow.yml
|       |__ actions
|           |__ local-action
|               |__ action.yml
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - uses: ./.github/actions/local-action

Resources

About

GitHub actions playground


Languages

Language:JavaScript 100.0%