Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ updates:
directory: '/'
schedule:
interval: 'monthly'
cooldown:
default-days: 7
open-pull-requests-limit: 99
groups:
all-actions:
Expand All @@ -14,6 +16,8 @@ updates:
directory: '/'
schedule:
interval: 'monthly'
cooldown:
default-days: 7
open-pull-requests-limit: 99
groups:
all-pip-packages:
Expand All @@ -24,6 +28,8 @@ updates:
directory: '/'
schedule:
interval: 'monthly'
cooldown:
default-days: 7
open-pull-requests-limit: 99
groups:
all-javascript-packages:
Expand All @@ -34,6 +40,8 @@ updates:
directory: '/'
schedule:
interval: "monthly"
cooldown:
default-days: 7
open-pull-requests-limit: 10
groups:
docker-updates:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ jobs:
git config --global user.email "$GPG_EMAIL"
env:
GPG_SIGNING_KEY: ${{ secrets.GPG_SIGNING_KEY }}
- run: pip install PyGithub semver
- run: make publish
- run: pip install poetry && poetry install --only main
- run: poetry run make publish
env:
DOCKER_IMAGE: ghcr.io/juliaregistries/tagbot
DOCKER_USERNAME: christopher-dG
Expand Down
4 changes: 2 additions & 2 deletions bin/publish.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from tempfile import mkstemp
from typing import List, Optional

from github import Github, GithubException
from github import Auth, Github, GithubException
from github.PullRequest import PullRequest
from github.Repository import Repository
from semver import VersionInfo
Expand All @@ -19,7 +19,7 @@
DOCKER_IMAGE = os.environ["DOCKER_IMAGE"]
DOCKER_USERNAME = os.environ["DOCKER_USERNAME"]
DOCKER_PASSWORD = os.environ["DOCKER_PASSWORD"]
GH = Github(os.environ["GITHUB_TOKEN"])
GH = Github(auth=Auth.Token(os.environ["GITHUB_TOKEN"]))


def configure_ssh() -> None:
Expand Down