-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #961 from sanger/develop
Prepare release 2.36.0
- Loading branch information
Showing
12 changed files
with
668 additions
and
626 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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Calls a reusable workflow in the .github repo, | ||
# which adds the PR that triggered this to the Technical Debt project board, if it is a depfu one. | ||
# Passes the 'PSD-AddToProject' GitHub App key and App Id as secrets to the reusable workflow. | ||
|
||
name: Add dependencies to technical debt project | ||
|
||
on: | ||
# Triggered on creation of pull requests with any label, | ||
# or when a label is added to an existing pull request. | ||
pull_request: | ||
types: | ||
- labeled | ||
|
||
jobs: | ||
call-workflow-add_to_technical_debt_project: | ||
uses: sanger/.github/.github/workflows/add_to_tech_debt_project_reusable.yml@master | ||
secrets: | ||
app_id: ${{ secrets.ADD_TO_PROJECT_APP_ID_PSD }} | ||
app_key: ${{ secrets.ADD_TO_PROJECT_APP_KEY_PSD }} |
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,12 @@ | ||
name: Assign Issue Number | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
||
jobs: | ||
call-add-to-project: | ||
uses: sanger/.github/.github/workflows/generate_issue_number.yml@master | ||
secrets: | ||
app_id: ${{ secrets.ISSUE_GEN_APP_ID }} | ||
app_key: ${{ secrets.ISSUE_GEN_APP_KEY }} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
2.35.1 | ||
2.36.0 |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 @@ | ||
#!/bin/bash | ||
|
||
cd "$(dirname "$0")" | ||
docker-compose down | ||
docker compose down |
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,3 @@ | ||
version: "3.8" | ||
services: | ||
lighthouse: | ||
build: . | ||
|
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