Merge branch 'master' into auto-update/renku-ui-3.20.1 #2125
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: Automatic requirements.yml update PR | |
on: | |
push: | |
branches: | |
- 'auto-update/**' | |
jobs: | |
auto-pull-request: | |
runs-on: ubuntu-latest | |
steps: | |
- name: close existing PRs | |
run: | | |
echo "$GITHUB_REF" | |
renku_repo="https://api.github.com/repos/SwissDataScienceCenter/renku" | |
# find the repo that made the PR | |
regex='renku-[a-z]+' | |
[[ ${GITHUB_REF} =~ $regex ]] | |
pr_repo=$BASH_REMATCH | |
# find other PRs from that repo | |
other_prs=$(curl -s ${renku_repo}/pulls | jq ".[] | select((.head.ref | test(\"auto-update/${pr_repo}\")) and (.head.ref != \"${GITHUB_REF:11}\")) | .number") | |
for pr in $other_prs ; do curl -s -H "Authorization: token $GITHUB_TOKEN" -X PATCH -d '{"state": "closed"}' ${renku_repo}/pulls/${pr} ; done | |
env: | |
GITHUB_TOKEN: ${{ secrets.RENKUBOT_GITHUB_TOKEN }} | |
- name: set PR body | |
id: set_pr_body | |
run: | | |
regex='renku-[a-z]+' | |
[[ ${GITHUB_REF} =~ $regex ]] | |
pr_repo=$BASH_REMATCH | |
pr_body="This is an automated pull request.\n\n/deploy" | |
# get current cli version for core PRs and set PR body for tests to pass | |
if [ "$pr_repo" == "renku-core" ]; then | |
regex='renku-core-([[:digit:]]+\.[[:digit:]]+\.[[:digit:]]+)' | |
[[ ${GITHUB_REF} =~ $regex ]] | |
core_version=${BASH_REMATCH[1]} | |
current_version_maybe_rc=$(curl -s https://pypi.org/pypi/renku/json | jq -r ".releases | keys_unsorted | map(select( . | startswith(\"$core_version\"))) | sort_by(. | split(\"[.]|rc\";\"\") | map(tonumber))[-1]") | |
pr_body="$pr_body extra-values=global.renku.cli_version=$current_version_maybe_rc" | |
fi | |
echo "$pr_body" | |
echo "pr_body=${pr_body}" >> "$GITHUB_OUTPUT" | |
- name: pull-request-action | |
uses: vsoch/pull-request-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.RENKUBOT_GITHUB_TOKEN }} | |
BRANCH_PREFIX: "auto-update/" | |
PULL_REQUEST_BRANCH: "master" | |
PULL_REQUEST_BODY: ${{steps.set_pr_body.outputs.pr_body}} |