Skip to content

Commit 60a9641

Browse files
authored
Merge pull request #37 from kurtmckee/release/1.3
Release v1.3
2 parents 9764103 + 9a40a0b commit 60a9641

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

.github/workflows/create-pr.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -353,6 +353,6 @@ jobs:
353353
run: |
354354
gh pr create \
355355
--head "${{ fromJSON(inputs.config).branch-name || env.default-branch-name }}" \
356-
--base "${{ fromJSON(inputs.config).branch-base || env.default-branch-base }}" \
356+
--base "${{ fromJSON(inputs.config).pr-base || env.default-pr-base }}" \
357357
--title "${{ fromJSON(inputs.config).pr-title || env.default-pr-title }}" \
358358
--body "${{ fromJSON(inputs.config).pr-body || env.default-pr-body }}"

CHANGELOG.rst

+10
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,16 @@ in the ``changelog.d/`` directory on GitHub.
1717

1818
.. scriv-insert-here
1919
20+
.. _changelog-1.3:
21+
22+
1.3 — 2025-01-29
23+
================
24+
25+
Fixed
26+
-----
27+
28+
- ``create-pr``: Fix a bug that prevented the PR base branch from being set correctly.
29+
2030
.. _changelog-1.2:
2131

2232
1.2 — 2025-01-28

docs/create-pr.rst

+7
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,13 @@ These must be set on the calling workflow:
4747
contents: "write"
4848
pull-requests: "write"
4949
50+
In addition, GitHub will block the GitHub Actions bot from opening PRs
51+
unless a checkbox in the repository settings is ticked:
52+
53+
.. code-block:: text
54+
55+
Settings > Actions > General > Allow GitHub Actions to create and approve pull requests
56+
5057
5158
.. required-config-keys:
5259

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "github-workflows"
3-
version = "1.2"
3+
version = "1.3"
44

55

66
# pytest

0 commit comments

Comments
 (0)