Skip to content

Commit 10b2df4

Browse files
authored
use dev goproxy, fix create pull request action (#1194)
1 parent 3f99356 commit 10b2df4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release-branch.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ on:
4242

4343
env:
4444
NFPM_VERSION: 'v2.35.3'
45-
GOPROXY: "https://${{ secrets.ARTIFACTORY_USER }}:${{ secrets.ARTIFACTORY_TOKEN }}@azr.artifactory.f5net.com/artifactory/api/go/f5-nginx-go-local-approved-dependency"
45+
GOPROXY: "https://${{ secrets.ARTIFACTORY_USER }}:${{ secrets.ARTIFACTORY_TOKEN }}@azr.artifactory.f5net.com/artifactory/api/go/f5-nginx-go-dev"
4646

4747
defaults:
4848
run:
@@ -304,10 +304,10 @@ jobs:
304304
script: |
305305
const { repo, owner } = context.repo;
306306
const result = await github.rest.pulls.create({
307-
title: 'Merge ${{ github.ref_name }} back into main',
307+
title: 'Merge ${{ inputs.releaseBranch }} back into main',
308308
owner,
309309
repo,
310-
head: '${{ github.ref_name }}',
310+
head: '${{ inputs.releaseBranch }}',
311311
base: 'main',
312312
body: [
313313
'This PR is auto-generated by the release workflow.'

0 commit comments

Comments
 (0)