Skip to content

Commit

Permalink
Merge pull request #231 from sanger/develop
Browse files Browse the repository at this point in the history
Develop to master
  • Loading branch information
emrojo authored Jul 20, 2022
2 parents 6e7ce07 + 4b1287b commit 6fce3a3
Show file tree
Hide file tree
Showing 6 changed files with 616 additions and 427 deletions.
1 change: 1 addition & 0 deletions .github/workflows/automated_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,6 @@ jobs:
- name: Remove the oldest package
uses: actions/delete-package-versions@v1
if: false
with:
package-name: "${{ github.event.repository.name }}"
16 changes: 8 additions & 8 deletions .github/workflows/check_release_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ jobs:
steps:
- uses: actions/checkout@v2

- name: Get the latest release
id: last_release
uses: pozetroninc/[email protected]
- name: Get specific changed files
id: changed-files-specific
uses: tj-actions/changed-files@v23
with:
owner: Sanger
repo: Wrangler
excludes: prerelease, draft
files: |
.release-version
- name: Compare releases
- name: Run step looking for change in the release version
run: >-
if [ "${{ steps.last_release.outputs.release }}" = "$(printf 'v%s\n' $(cat .release-version))" ]; then
if ! "${{ steps.changed-files-specific.outputs.any_changed }}"; then
echo "Please change the release version number"
exit 1;
fi
2 changes: 1 addition & 1 deletion .release-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.1
1.3.2
5 changes: 4 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
black = "*"
black = "==21.4b0"
coverage = {extras = ["toml"],version = "*"}
flake8 = "*"
flake8-bugbear = "*"
Expand All @@ -18,6 +18,9 @@ flask = "~=1.1"
gunicorn = "~=20.0"
python-dotenv = "~=0.17"
slackclient = "~=2.6"
markupsafe = "==2.0.1"
click = "*"
types-flask = "*"

[requires]
python_version = "3.8"
Expand Down
Loading

0 comments on commit 6fce3a3

Please sign in to comment.