Update requirements.txt #100
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: Submodule PR | |
on: | |
pull_request: | |
branches: [develop] | |
types: [closed] | |
jobs: | |
CanDIG-dispatch: | |
runs-on: ubuntu-latest | |
env: | |
PARENT_REPOSITORY: 'CanDIG/CanDIGv2' | |
CHECKOUT_BRANCH: 'develop' | |
PR_AGAINST_BRANCH: 'develop' | |
OWNER: 'CanDIG' | |
if: github.event.pull_request.merged == true | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: get PR data | |
shell: python | |
run: | | |
import json | |
import os | |
with open('${{ github.event_path }}') as fh: | |
event = json.load(fh) | |
escaped = event['pull_request']['title'].replace("'", '"') | |
pr_number = event["number"] | |
print(escaped) | |
with open(os.environ['GITHUB_ENV'], 'a') as fh: | |
print(f'PR_TITLE={escaped}', file=fh) | |
print(f'PR_NUMBER={pr_number}', file=fh) | |
- name: Create PR in CanDIGv2 | |
id: make_pr | |
uses: CanDIG/github-action-pr-expanded@v4 | |
with: | |
github_token: ${{ secrets.SUBMODULE_PR }} | |
parent_repository: ${{ env.PARENT_REPOSITORY }} | |
checkout_branch: ${{ env.CHECKOUT_BRANCH}} | |
pr_against_branch: ${{ env.PR_AGAINST_BRANCH }} | |
pr_title: "${{ github.repository }} merging: ${{ env.PR_TITLE }}" | |
pr_description: "PR triggered by update to develop branch on ${{ github.repository }}. Commit hash: `${{ github.sha }}`. PR link: [#${{ env.PR_NUMBER }}](https://github.com/${{ github.repository }}/pull/${{ env.PR_NUMBER }})" | |
owner: ${{ env.OWNER }} | |
submodule_path: lib/candig-ingest/candigv2-ingest |