You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
we have a PR and when the tester comments "start_testing!" we want to spin up a test environment for this branch.
i had the idea that we just need to listen for comments in PRs and your action would be sufficient, but nothing here gets triggered.
am i right with the assumption, that our usecase won't work?
name: Starting a test environment
on:
pull_request:
types: [opened]
issue_comment:
types: [created]
jobs:
spinup:
runs-on: ubuntu-latest
steps:
- uses: khan/pull-request-comment-trigger@master
id: check
with:
trigger: 'start_testing!'
- run: 'sh deploy.sh #here we can run the pipeline to spin up an environment'
if: steps.check.outputs.triggered == 'true'
The text was updated successfully, but these errors were encountered:
we have a PR and when the tester comments "start_testing!" we want to spin up a test environment for this branch.
i had the idea that we just need to listen for comments in PRs and your action would be sufficient, but nothing here gets triggered.
am i right with the assumption, that our usecase won't work?
The text was updated successfully, but these errors were encountered: