This repository has been archived by the owner on Sep 2, 2024. It is now read-only.
Rotation scan moves aperture to LARGE by default #1328
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
# See https://confluence.diamond.ac.uk/x/tJqQC for instructions if this needs a new token | |
name: Add issues with open PRs to Review | |
on: | |
pull_request: | |
types: [ready_for_review, opened, review_requested] | |
jobs: | |
get_associated_issue: | |
uses: ./.github/workflows/get_issue_from_pr.yml | |
with: | |
pr_id: ${{ github.event.pull_request.number }} | |
secrets: inherit | |
move_to_review_if_not_in_draft: | |
needs: get_associated_issue | |
if: github.event.pull_request.draft == false | |
uses: ./.github/workflows/get_project_data_and_move_column.yml | |
with: | |
column_name: Review | |
issue_id: ${{ needs.get_associated_issue.outputs.issue_from_pr }} | |
secrets: inherit |