Skip to content

Commit ca9c8f8

Browse files
Automatically send PRs on release
This will automatically send a pull request to our container recipes any time a release is issued to help keep all software up to date, like this: openkim/openkim-pipeline#90 openkim/developer-platform#23
1 parent 6c5636c commit ca9c8f8

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/publish.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,19 @@ jobs:
3636
run: |
3737
python setup.py sdist
3838
twine upload dist/*
39+
send-pull-request-to-kdp:
40+
uses: openkim/reusable-workflows/.github/workflows/upversion-pypi-package-and-send-pr.yml@main
41+
secrets: inherit
42+
with:
43+
target-repository: developer-platform
44+
target-repository-base-branch: main
45+
recipe-file-path: docker/install/Dockerfile
46+
needs: deploy
47+
send-pull-request-to-pipeline:
48+
uses: openkim/reusable-workflows/.github/workflows/upversion-pypi-package-and-send-pr.yml@main
49+
secrets: inherit
50+
with:
51+
target-repository: openkim-pipeline
52+
target-repository-base-branch: devel
53+
recipe-file-path: singularity/hpccm-recipe-cumulative.py
54+
needs: deploy

0 commit comments

Comments
 (0)