Open benatshippabo opened 1 year ago
No response
Can we also have the ability to auto approve workflows based on github events as well? For example, we have the following workflow:
workflows: version: 2 build: jobs: - server_unit_tests - server_integration_test - frontend_tests - e2e_tests_trigger: type: approval - e2e_tests: requires: - e2e_tests_trigger
Instead of triggering the pipeline, can we also have this action auto approve based on github actions? My goal is to have the job auto approve based on a label merge
merge
on: pull_request: types: [labeled] jobs: trigger-circleci: if: ${{ github.event.label.name == 'merge' }} runs-on: ubuntu-latest steps: - name: <customize name> id: <customize id> uses: CircleCI-Public/trigger-circleci-pipeline-action@v1.0.5 with: - APPROVAL_TRIGGER=e2e_tests_trigger env: CCI_TOKEN: ${{ secrets.CCI_TOKEN }}
Need a way for merge queues to be able to auto trigger circleci approval jobs
We have the same need, it would be awesome to have this feature.
Is there an existing issue that is already proposing this?
Is your feature request related to a problem? Please describe it
No response
Describe the solution you'd like
Can we also have the ability to auto approve workflows based on github events as well? For example, we have the following workflow:
Instead of triggering the pipeline, can we also have this action auto approve based on github actions? My goal is to have the job auto approve based on a label
merge
Teachability, documentation, adoption, migration strategy
What is the motivation / use case for changing the behavior?
Need a way for merge queues to be able to auto trigger circleci approval jobs