GitHub Action Toolkit

Hello everyone,

I hope you are having a good day. I am working on a project that uses GitHub Actions in Swift and I would like to request your help and guidance to successfully complete it.

The project is on GitHub: github-toolkit. I have also created a specific repository for the GitHub Action in Swift as a test for its operation: Test_Github_Action.

And for this GitHub action from your own repo I wanted the yml in this way:

name: Ejemplo de GitHub Actions

on:
  push:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
    - name: Checkout del repositorio
      uses: actions/checkout@v2

    - name: Ejecutar la acción personalizada
      uses: asielcabrera/Test_Github_Action@v8.3
      with:
          myInput: 'Hello, world! '

It should be noted that due to lack of time to be able to invest in the project I come to the community for help to complete the toolkit and to debug the code

Question:
What basic functionalities would you expect to be able to do GitHub Actions from swift?

1 Like