-
Notifications
You must be signed in to change notification settings - Fork 32
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 renku-data-services-users-db
- Loading branch information
Showing
24 changed files
with
307 additions
and
147 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: cypress-io/github-action@v5 | ||
- uses: cypress-io/github-action@v6 | ||
id: cypress | ||
env: | ||
TEST_EMAIL: [email protected] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version = "3.7.17" | ||
version = "3.8.0" | ||
|
||
runner.dialect = "scala213" | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.9.8 | ||
sbt.version=1.9.9 |
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 |
---|---|---|
|
@@ -5,4 +5,5 @@ export const TIMEOUTS = { | |
standard: 20_000, | ||
long: 60_000, | ||
vlong: 180_000, | ||
vvlong: 300_000, | ||
}; |
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
Oops, something went wrong.