Multiple Selectable Approaches for Text (Chain of Thought with Prompt Chaining) #94
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Testserver Locks | |
on: | |
pull_request_target: | |
types: [labeled] | |
issues: | |
types: [labeled] | |
jobs: | |
# Disallow adding testserver locks to PRs manually | |
noManualSetOfLockLabel: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions-ecosystem/action-remove-labels@v1 | |
if: startsWith(github.event.label.name, 'lock:athena-test') || startsWith(join(github.event.pull_request.labels.*.name), 'lock:athena-test') | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
labels: | | |
lock:athena-test1 | |
lock:athena-test2 |