Commit Graph

15 Commits

Author SHA1 Message Date
Zach Borboa 0fbe4d0efc Increase recent pull request limit 2023-10-26 15:24:47 -07:00
Zach Borboa 0921e8391a Fix static type checker error
Error message:
    error: "Repo" is not exported from module "git"
    (reportPrivateImportUsage)
2023-10-21 19:14:04 -07:00
Zach Borboa 671b6ad1c6 Fix static type checker error
Error message:
    error: Argument of type "str | None" cannot be assigned to parameter
    "full_name_or_id" of type "int | str" in function "get_repo"
    (reportGeneralTypeIssues)
2023-10-21 19:01:58 -07:00
Zach Borboa 350f4daa8a Add flake8 and isort to lint check 2023-09-09 08:41:16 -07:00
Zach Borboa 753bff006f Add isort pre-commit hook 2023-09-08 08:54:15 -07:00
Zach Borboa c93a891749 Update order of pull request checks 2023-08-25 07:29:51 -07:00
Zach Borboa efe4f69683 Normalize strings 2023-07-01 09:57:03 -07:00
Zach Borboa 6c49609b9f Format python files 2023-07-01 09:57:03 -07:00
Zach Borboa 422d1858d4 Only display diff after commit 2023-01-13 04:39:21 -08:00
Zach Borboa b5e90e45a9 Fix release failure by fetching all tags during checkout
Command:
  for remote in local_repo.remotes:
      remote.fetch('--tags')

Error message:
  git.exc.GitCommandError: Cmd('git') failed due to: exit code(128)
    cmdline: git fetch -v -- origin --tags
    stderr: 'fatal: couldn't find remote ref --tags'

Before:
    Fetching the repository
    /usr/bin/git -c protocol.version=2 fetch --no-tags --prune --progress --no-recurse-submodules --depth=1 origin [...]

After:
    Fetching the repository
    /usr/bin/git -c protocol.version=2 fetch --prune --progress --no-recurse-submodules origin [...]
2022-12-30 18:03:02 -08:00
Zach Borboa 6d91f62e88 Skip including release notes for cleanup pull requests 2022-12-08 18:45:48 -08:00
Zach Borboa 91c885076a Exit earlier if any pull request is missing semantic version change type 2022-12-08 18:36:45 -08:00
Zach Borboa 9195bcde44 Clarify make release message 2022-09-30 05:31:36 -07:00
Zach Borboa a7ada9308c Run release earlier 2022-09-29 05:14:47 -07:00
Zach Borboa 7bbb9e7e0d Rename action step name and script name 2022-09-23 21:08:44 -07:00