-
Notifications
You must be signed in to change notification settings - Fork 2
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 #74 from globus/release/0.13.0b1
Release/0.13.0b1
- Loading branch information
Showing
64 changed files
with
850 additions
and
2,127 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,2 @@ | ||
# The automate team will be requested for review on all opened PRs. | ||
* @ada-globus @joshbryan-globus @kurtmckee @sirosen @jakeglobus @derek-globus |
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,7 +1,13 @@ | ||
name: Enforce Changelog Fragment | ||
on: | ||
- pull_request | ||
pull_request: | ||
types: | ||
- labeled | ||
- unlabeled | ||
- opened | ||
- reopened | ||
- synchronize | ||
|
||
jobs: | ||
call-scriv-workflow: | ||
uses: globus/globus-automate-client/.github/workflows/has_changelog.yaml@main | ||
uses: globus/globus-sdk-python/.github/workflows/has_changelog.yaml@main |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# Update the hook revs in this file by running `pre-commit autoupdate`. | ||
|
||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.3.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- id: end-of-file-fixer | ||
- id: check-yaml | ||
- id: check-json | ||
- id: check-added-large-files | ||
|
||
- repo: https://github.com/psf/black | ||
rev: 22.10.0 | ||
hooks: | ||
- id: black | ||
|
||
# Allow tox to run black strictly as a linter. | ||
- id: black | ||
alias: black-check | ||
stages: [manual] | ||
args: [--check] | ||
|
||
- repo: https://github.com/timothycrosley/isort | ||
rev: 5.10.1 | ||
hooks: | ||
- id: isort | ||
|
||
# Allow tox to run isort strictly as a linter. | ||
- id: isort | ||
alias: isort-check | ||
stages: [manual] | ||
args: [--check] |
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 |
---|---|---|
|
@@ -45,7 +45,7 @@ and plug into other web frameworks. | |
from flask import Flask | ||
from globus_action_provider_tools import ActionProviderDescription | ||
description = ActionProviderDescription( | ||
description = ActionProviderDescription( | ||
globus_auth_scope="https://auth.globus.org/scopes/00000000-0000-0000-0000-000000000000/action_all", | ||
title="My Action Provider", | ||
admin_contact="[email protected]", | ||
|
@@ -82,7 +82,7 @@ share your feedback. | |
Testing, Development, and Contributing | ||
-------------------------------------- | ||
|
||
Welcome and thank you for taking the time to contribute! | ||
Welcome and thank you for taking the time to contribute! | ||
|
||
The ``globus_action_provider_tools`` package is developed using poetry so to get | ||
started you'll need to install `poetry <https://python-poetry.org/>`_. Once | ||
|
@@ -115,7 +115,7 @@ Please follow the steps below when creating a new release of the toolkit: | |
- git push --tags | ||
- Create a new GH release that references the recently created tag. Provide | ||
release notes with information on the changeset. Once the release is created, | ||
there's a GH workflow that will build the toolkit and publish it to pypi. | ||
there's a GH workflow that will build the toolkit and publish it to pypi. | ||
|
||
Links | ||
----- | ||
|
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.