Run Script #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: handle some stuff | |
| on: | |
| workflow_dispatch: # allows manual run | |
| jobs: | |
| script: | |
| name: Run Script | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Configure Git | |
| run: | | |
| git config user.name "${{ secrets.GIT_USER_NAME }}" | |
| git config user.email "${{ secrets.GIT_USER_EMAIL }}" | |
| - name: Run Script Action | |
| uses: AhmedAbdoElhawary/private-algo-action@main | |
| with: | |
| source-branch: feature/sorting | |
| target-branch: develop |