generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
Closed
Labels
enhancementNew feature or requestNew feature or request
Description
Depends on: #38
Right now the queue only allows one pending job. If there is a not finished job the queue does not allow adding more jobs. We want to allow N jobs in the queue.
In order to implement this feature we need to add an extra input to the action when we use the finish-job
or other action that might require the job id:
- name: Mark job as finished
id: finish-job
if: ${{ steps.create-job.outputs.job_created == 'true' }}
uses: ./
with:
git_repo_dir: ${{ runner.temp }}/temp_git_dir
queue_name: 'Library Update [library-aaa]'
action: 'finish-job'
job_payload: '{"field": "value", "state": "finished", "job_id": 15}'
job_id: 15
Notice the new input job_id: 15
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request