remove id from test prompts

This commit is contained in:
mauwii 2022-10-29 10:11:54 +02:00
parent bb5fe98e94
commit b55dcf5943
No known key found for this signature in database
GPG Key ID: D923DB04ADB3F5AB

View File

@ -72,17 +72,14 @@ jobs:
miniconda-version: latest
- name: set test prompt to main branch validation
id: set-test-prompt
if: ${{ github.ref == 'refs/heads/main' }}
run: echo "TEST_PROMPTS=tests/preflight_prompts.txt" >> $GITHUB_ENV
- name: set test prompt to development branch validation
id: set-test-prompt
if: ${{ github.ref == 'refs/heads/development' }}
run: echo "TEST_PROMPTS=tests/dev_prompts.txt" >> $GITHUB_ENV
- name: set test prompt to Pull Request validation
id: set-test-prompt
if: ${{ github.ref != 'refs/heads/main' && github.ref != 'refs/heads/development' }}
run: echo "TEST_PROMPTS=tests/validate_pr_prompt.txt" >> $GITHUB_ENV