You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can also pin to a [specific release](https://github.com/peter-evans/create-pull-request/releases) version in the format `@v7.x.x`
@@ -131,7 +131,7 @@ If you want branches to be deleted immediately on merge then you should use GitH
131
131
For self-hosted runners behind a corporate proxy set the `https_proxy` environment variable.
132
132
```yml
133
133
- name: Create Pull Request
134
-
uses: peter-evans/create-pull-request@v7
134
+
uses: peter-evans/create-pull-request@v8
135
135
env:
136
136
https_proxy: http://<proxy_address>:<port>
137
137
```
@@ -153,7 +153,7 @@ Note that in order to read the step outputs the action step must have an id.
153
153
```yml
154
154
- name: Create Pull Request
155
155
id: cpr
156
-
uses: peter-evans/create-pull-request@v7
156
+
uses: peter-evans/create-pull-request@v8
157
157
- name: Check outputs
158
158
if: ${{ steps.cpr.outputs.pull-request-number }}
159
159
run: |
@@ -216,7 +216,7 @@ File changes that do not match one of the paths will be stashed and restored aft
216
216
217
217
```yml
218
218
- name: Create Pull Request
219
-
uses: peter-evans/create-pull-request@v7
219
+
uses: peter-evans/create-pull-request@v8
220
220
with:
221
221
add-paths: |
222
222
*.java
@@ -230,7 +230,7 @@ Note that the repository must be checked out on a branch with a remote, it won't
230
230
231
231
```yml
232
232
steps:
233
-
- uses: actions/checkout@v4
233
+
- uses: actions/checkout@v6
234
234
- name: Create commits
235
235
run: |
236
236
git config user.name 'Peter Evans'
@@ -243,7 +243,7 @@ Note that the repository must be checked out on a branch with a remote, it won't
0 commit comments