-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix nothing to migrate bug (#231) * handle case where default branch and discourse are in-line but base is not for the migration case * Add a formatted representation of the UpdatePageAction dataclass (#230) * Add a formatted representation of the UpdatePageAction dataclass * Update changelog * Add return value to docstring * Include return type * Apply lint changes * Include a string representation of the class, which many tests check for * fix linting (#234) * Update python Docker tag to v3.12 (#220) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: arturo-seijas <[email protected]> * Update dependency more-itertools to >=10.2,<10.3 (#229) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: arturo-seijas <[email protected]> * Update dependency PyGithub to >=2.2,<2.3 (#233) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: arturo-seijas <[email protected]> Co-authored-by: Christopher Bartz <[email protected]> * Update dependency pytest to v8 (#232) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: arturo-seijas <[email protected]> * Create bot_pr_approval.yaml (#236) * Removed `discourse-gatekeeper/discourse-ahead-ok` (#235) * feat(ISD-1567): removed obsolete code and corresponding documentation * feat(ISD-1498): removed check in test_check for the removed tag * feat(ISD-1498): updated test parameters to account for removal of discourse ahead tag removal * feat(ISD-1498): removed tagged argument from tests * feat(ISD-1498): ensured all parameters return only 2 values in tuple * feat(ISD-1498): removed ahead tag from constants file, removed mention in integration tests * feat(ISD-1498): removed ahead tag from check.py * feat(ISD-1498): rectified erroneous deletion of expected problem in test check * feat(ISD-1498): adhered to linting requirements by removing unused src.constants imports * feat(ISD-1498): fixed all linting issues and fixed method signatures. * feat(ISD-1498): removed test case 7 from test conflicts * feat(ISD-1498): removed test 7 * feat(ISD-1498): fixed linting issues * feat(ISD-1498): updated change log with new version details * feat(ISD-1498): added src-docs * feat(ISD-1498): fixed comments in run_conflict integration test * feat(ISD-1498): removed assert associated with removed act * Prepare discourse-gatekeeper for PAAS app charmer (#238) New input parameter `charm-dir`, that defines where to look for `metadata.yaml`, `charmcraft.yaml` or the docs directory. If `metadata.yaml` does not exist, `charmcraft.yaml` is used instead. * conflict change race condition resolution stage 1 (#241) * add check that content has not changed on discourse before updating the content * New version v0.9.0 (#242) --------- Co-authored-by: David Andersson <[email protected]> Co-authored-by: mthaddon <[email protected]> Co-authored-by: arturo-seijas <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Christopher Bartz <[email protected]> Co-authored-by: Brendan Bell <[email protected]>
- Loading branch information
1 parent
6556d9a
commit b655fad
Showing
77 changed files
with
849 additions
and
389 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,10 @@ | ||
name: Provide approval for bot PRs | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
bot_pr_approval: | ||
uses: canonical/operator-workflows/.github/workflows/bot_pr_approval.yaml@main | ||
secrets: inherit | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,5 @@ ops | |
pytest-operator | ||
factory_boy>=3,<4 | ||
pytest-asyncio>=0.21,<0.22 | ||
pytest>=7,<8 | ||
pytest>=8,<9 | ||
juju==3.1.2.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
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,6 +1,6 @@ | ||
GitPython>=3.1,<3.2 | ||
pydiscourse>=1.6,<1.7 | ||
PyGithub>=2.1,<2.2 | ||
PyGithub>=2.2,<2.3 | ||
PyYAML>=6.0,<6.1 | ||
requests>=2.31,<2.32 | ||
more-itertools>=10.1,<10.2 | ||
more-itertools>=10.2,<10.3 |
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
Oops, something went wrong.