Programming exercises
: Fix test case type presentation for non Java exercises
#3518
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: Pull Request Ready for Review | |
on: | |
pull_request_target: | |
types: [ready_for_review] | |
jobs: | |
pullequestReadyForReview: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Move to "Ready for review" column | |
if: github.event.pull_request.draft == false | |
uses: alex-page/[email protected] | |
with: | |
project: Artemis Development | |
column: Ready for review | |
repo-token: ${{ secrets.GH_TOKEN_ADD_TO_PROJECT }} | |
- name: Label "ready for review" | |
uses: actions/github-script@v6 | |
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'] | |
}) |