Skip to content

Commit

Permalink
fix double/single quote issue
Browse files Browse the repository at this point in the history
  • Loading branch information
eKathleenCarter committed Oct 28, 2024
1 parent 979bc72 commit e887346
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/labe-predicate-changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
python -c "
python -c '
from github import Github
g = Github("${{ secrets.GITHUB_TOKEN }}")
Expand All @@ -45,14 +45,14 @@ jobs:
if any(keyword.lower() in item.title.lower() or keyword.lower() in item.body.lower() for keyword in keywords):
item.add_to_labels(label_name) # Add the label
"
'
- name: Assign if Labeled
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: github.event.action == 'labeled' && github.event.label.name == 'Biological Context QC'
run: |
python -c "
python -c '
from github import Github
g = Github("${{ secrets.GITHUB_TOKEN }}")
Expand All @@ -62,4 +62,4 @@ jobs:
assignee = "eKathleenCarter"
issue.add_to_assignees(assignee)
"
'

0 comments on commit e887346

Please sign in to comment.