diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 7821942..3e6afd8 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.1 +current_version = 1.1.2 commit = True tag = False diff --git a/.github/dependabot.yml b/.github/dependabot.yml index ae760f7..0e0584e 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,8 +5,12 @@ updates: schedule: interval: daily open-pull-requests-limit: 10 + labels: + - "merge when passing" - package-ecosystem: pip directory: "/" schedule: interval: daily open-pull-requests-limit: 10 + labels: + - "merge when passing" diff --git a/.github/workflows/auto-merge.yml b/.github/workflows/auto-merge.yml deleted file mode 100644 index ac0ee08..0000000 --- a/.github/workflows/auto-merge.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: automerge -on: - check_suite: - types: - - completed - -jobs: - automerge: - runs-on: ubuntu-latest - if: | - github.actor == 'dependabot[bot]' || - github.actor == 'dependabot' || - github.actor == 'dependabot-preview[bot]' || - github.actor == 'dependabot-preview' || - github.actor == 'renovate[bot]' || - github.actor == 'renovate' - steps: - - name: automerge - uses: pascalgn/automerge-action@v0.15.6 - env: - GITHUB_TOKEN: ${{ secrets.PAT_TOKEN }} - MERGE_METHOD: "rebase" - UPDATE_METHOD: "rebase" - MERGE_RETRIES: "6" - MERGE_RETRY_SLEEP: "100000" - MERGE_LABELS: "" diff --git a/CHANGELOG.md b/CHANGELOG.md index 12d4f52..0e9673f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [v1.1.2](https://github.com/tj-python/github-deploy/tree/v1.1.2) (2023-05-29) + +[Full Changelog](https://github.com/tj-python/github-deploy/compare/v1.1.1...v1.1.2) + +**Merged pull requests:** + +- Bump tj-actions/github-changelog-generator from 1.18 to 1.19 [\#45](https://github.com/tj-python/github-deploy/pull/45) ([dependabot[bot]](https://github.com/apps/dependabot)) +- Upgraded v1.1.0 → v1.1.1 [\#44](https://github.com/tj-python/github-deploy/pull/44) ([jackton1](https://github.com/jackton1)) + ## [v1.1.1](https://github.com/tj-python/github-deploy/tree/v1.1.1) (2023-04-05) [Full Changelog](https://github.com/tj-python/github-deploy/compare/v1.1.0...v1.1.1) @@ -83,15 +92,15 @@ ## [0.0.7](https://github.com/tj-python/github-deploy/tree/0.0.7) (2021-11-15) -[Full Changelog](https://github.com/tj-python/github-deploy/compare/0.0.6...0.0.7) +[Full Changelog](https://github.com/tj-python/github-deploy/compare/0.0.5...0.0.7) -## [0.0.6](https://github.com/tj-python/github-deploy/tree/0.0.6) (2021-11-15) +## [0.0.5](https://github.com/tj-python/github-deploy/tree/0.0.5) (2021-11-15) -[Full Changelog](https://github.com/tj-python/github-deploy/compare/0.0.5...0.0.6) +[Full Changelog](https://github.com/tj-python/github-deploy/compare/0.0.6...0.0.5) -## [0.0.5](https://github.com/tj-python/github-deploy/tree/0.0.5) (2021-11-15) +## [0.0.6](https://github.com/tj-python/github-deploy/tree/0.0.6) (2021-11-15) -[Full Changelog](https://github.com/tj-python/github-deploy/compare/0.0.4...0.0.5) +[Full Changelog](https://github.com/tj-python/github-deploy/compare/0.0.4...0.0.6) **Merged pull requests:** diff --git a/github_deploy/commands/_constants.py b/github_deploy/commands/_constants.py index ab4c9ba..174b0a3 100644 --- a/github_deploy/commands/_constants.py +++ b/github_deploy/commands/_constants.py @@ -1,2 +1,2 @@ -REPOS_URL = "https://api.github.com/users/{org}/repos" +REPOS_URL = "https://api.github.com/users/{org}/repos?per_page=100" FILE_CONTENTS_URL = "https://api.github.com/repos/{repo}/contents/{path}" diff --git a/setup.py b/setup.py index ce167a8..f561204 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setup( name="github-deploy", - version="1.1.1", + version="1.1.2", description="Deploy yaml files to a large number of repositories in seconds.", long_description=LONG_DESCRIPTION, long_description_content_type=LONG_DESCRIPTION_TYPE,