Text exercises
: Set the isGraded flag to false for student athena requests
#4524
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: Pull Request Ready for Review | |
on: | |
pull_request_target: | |
types: [ready_for_review] | |
jobs: | |
pullequestReadyForReview: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Label "ready for review" | |
uses: actions/github-script@v7 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
script: | | |
await github.rest.issues.addLabels({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
labels: ['ready for review'] | |
}) |