-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-0.49.0' into auto-update/renku-core-2.9.2
- Loading branch information
Showing
11 changed files
with
125 additions
and
43 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,16 +40,3 @@ jobs: | |
if: always() | ||
outputs: | ||
chart-version: ${{ steps.vars.outputs.tag }} | ||
rollout-renku-deployments: | ||
runs-on: ubuntu-20.04 | ||
needs: | ||
- "publish-chart" | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
- name: Rollout renku version | ||
uses: SwissDataScienceCenter/renku-actions/[email protected] | ||
env: | ||
CHART_VERSION: ${{ needs.publish-chart.outputs.chart-version }} | ||
GITHUB_TOKEN: ${{ secrets.RENKUBOT_GITHUB_TOKEN }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Check release branch | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: [opened,closed,synchronize,edited,review_requested,reopened] | ||
branches: | ||
- master | ||
pull_request_review: | ||
types: [submitted] | ||
jobs: | ||
check-open-prs: | ||
if: startsWith(github.event.pull_request.head.ref, 'release-') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check unmerged PRs | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const prs = await github.rest.pulls.list({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
base: context.payload.pull_request.head.ref, | ||
state: 'open' | ||
}) | ||
const prs_filtered = prs.data.filter((p)=>!p.draft) | ||
if ( prs_filtered.length > 0 ) { | ||
core.setFailed('There are umerged open PRs targetting this branch:\n'+prs_filtered.map((p)=>p.title + ' ( ' + p.html_url + ' )').join('\n')) | ||
} |
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
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
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
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
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
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
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
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
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