NEW SJ PP HARVEST: As Dan, I want new SJ to be able to harvest from the PapersPast open data set, so that we can start experimenting with how to feasibly bring the whole collection into our system #41
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: Close MR on GitLab | |
on: | |
pull_request: | |
types: [closed] | |
jobs: | |
close-merge-request: | |
runs-on: ubuntu-latest | |
steps: | |
- name: close-merge-request | |
env: | |
GITLAB_API_ACCESS_TOKEN: ${{ secrets.GITLAB_API_ACCESS_TOKEN }} | |
GITLAB_API: ${{ secrets.GITLAB_API }} | |
GITLAB_PROJECT_ID: ${{ secrets.GITLAB_PROJECT_ID }} | |
PR_SOURCE_BRANCH: ${{ github.head_ref }} | |
PR_TARGET_BRANCH: ${{ github.base_ref }} | |
run: | | |
echo "PR_SOURCE_BRANCH: $PR_SOURCE_BRANCH" | |
echo "PR_TARGET_BRANCH: $PR_TARGET_BRANCH" | |
MR_IID=`curl \ | |
--header "Content-Type: application/json" \ | |
--header "PRIVATE-TOKEN: $GITLAB_API_ACCESS_TOKEN" \ | |
"$GITLAB_API/projects/$GITLAB_PROJECT_ID/merge_requests?state=opened&source_branch=$PR_SOURCE_BRANCH&target_branch=$PR_TARGET_BRANCH" \ | |
| jq '.[0].iid'` | |
curl \ | |
--request PUT \ | |
--header "Content-Type: application/json" \ | |
--header "PRIVATE-TOKEN: $GITLAB_API_ACCESS_TOKEN" \ | |
"$GITLAB_API/projects/$GITLAB_PROJECT_ID/merge_requests/$MR_IID?state_event=close" |