Skip to content

Manual Trigger

Actions
Allows you to set up a manual trigger for a workflow so subsequent jobs can run later
v1.0.2
Latest
Star (9)

Manual-Trigger v1

Allows you to setup a manual trigger for a workflow so subsequent jobs can be skipped if the trigger is not run or if the jobs need to be run at a later time.

Usage

For each manual step you must rerun the step to execute the manual trigger. The first automatic ci run will skip the subsequent jobs linked to the manual trigger with needs.

RUN_NAME must be unique for each manual step added

manual-step-name:
  runs-on: ubuntu-latest
  outputs:
      CONTINUE_JOBS: ${{ steps.manual-trigger.outputs.CONTINUE_JOBS }}
  steps:
    - name: manual-trigger
      id: manual-trigger
      uses: benhamiltonpro/manual-trigger@v1
      with:
        RUN_NAME: "manual-step"
step-awaiting-manual-trigger:
  needs: manual-step-name
  if: ${{ needs.manual-step-name.outputs.CONTINUE_JOBS == 'true' }}
  ... do things

Manual Trigger Single Job

...
manual-step-name:
  runs-on: ubuntu-latest
  outputs:
      CONTINUE_JOBS: ${{ steps.manual-trigger.outputs.CONTINUE_JOBS }}
  steps:
    - name: manual-trigger
      id: manual-trigger
      uses: benhamiltonpro/manual-trigger@v1
      with:
        RUN_NAME: "build"
build:
  needs: manual-trigger-build
  if: ${{ needs.manual-trigger-build.outputs.CONTINUE_JOBS == 'true' }}
  runs-on: ubuntu-latest
  steps:
    - name: Runs plan
      run: echo "It runs plan"
  flowchart LR;
      manual-trigger-build-->build;
Loading

Manual Trigger More Than One Job

...
manual-trigger-build:
  runs-on: ubuntu-latest
  outputs:
      CONTINUE_JOBS: ${{ steps.manual-trigger.outputs.CONTINUE_JOBS }}
  steps:
    - name: manual-trigger
      id: manual-trigger
      uses: benhamiltonpro/manual-trigger@v1
      with:
        RUN_NAME: "build"
build:
  needs: manual-trigger-build
  if: ${{ needs.manual-trigger-build.outputs.CONTINUE_JOBS == 'true' }}
  runs-on: ubuntu-latest
  steps:
    - name: Runs plan
      run: echo "It runs plan"

manual-trigger-deploy:
  runs-on: ubuntu-latest
  outputs:
      CONTINUE_JOBS: ${{ steps.manual-trigger.outputs.CONTINUE_JOBS }}
  steps:
    - name: manual-trigger
      id: manual-trigger
      uses: benhamiltonpro/manual-trigger@v1
      with:
      RUN_NAME: "deploy"
deploy:
  needs: manual-trigger-deploy
  if: ${{ needs.manual-trigger-deploy.outputs.CONTINUE_JOBS == 'true' }}
  runs-on: ubuntu-latest
  steps:
    - name: Runs deploy
      run: echo "It runs deploy"
  flowchart LR;
      manual-trigger-build-->build;
Loading
  flowchart LR;
      manual-trigger-deploy-->deploy;
Loading

Manual Trigger Sequential Jobs

...
manual-trigger-build:
  runs-on: ubuntu-latest
  outputs:
      CONTINUE_JOBS: ${{ steps.manual-trigger.outputs.CONTINUE_JOBS }}
  steps:
    - name: manual-trigger
      id: manual-trigger
      uses: benhamiltonpro/manual-trigger@v1
      with:
        RUN_NAME: "build"
build:
  needs: manual-trigger-build
  if: ${{ needs.manual-trigger-build.outputs.CONTINUE_JOBS == 'true' }}
  runs-on: ubuntu-latest
  steps:
    - name: Runs plan
      run: echo "It runs plan"

manual-trigger-deploy:
  needs: build
  runs-on: ubuntu-latest
  outputs:
      CONTINUE_JOBS: ${{ steps.manual-trigger.outputs.CONTINUE_JOBS }}
  steps:
    - name: manual-trigger
      id: manual-trigger
      uses: benhamiltonpro/manual-trigger@v1
      with:
        RUN_NAME: "deploy"
deploy:
  needs: manual-trigger-deploy
  if: ${{ needs.manual-trigger-deploy.outputs.CONTINUE_JOBS == 'true' }}
  runs-on: ubuntu-latest
  steps:
    - name: Runs deploy
      run: echo "It runs deploy"
  flowchart LR;
  manual-trigger-build-->build-->manual-trigger-deploy-->deploy;
Loading

License

The scripts and documentation in this project are released under the MIT License

Manual Trigger is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Allows you to set up a manual trigger for a workflow so subsequent jobs can run later
v1.0.2
Latest

Manual Trigger is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.