Skip to content

Commit

Permalink
Sort out pr thing
Browse files Browse the repository at this point in the history
  • Loading branch information
owenatgov committed Jan 22, 2025
1 parent 38d5179 commit 5f01be7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,13 @@ jobs:
run: npm run build:release

- name: Create pull request
run: gh pr create --title "Release ${{ inputs.version }}" --body-file "release-notes-body"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# run: gh pr create --title "Release ${{ inputs.version }}" --body-file "release-notes-body"
run: |
# git commit -am "Release ${{ inputs.version }}"
git commit -am "Release TEST"
# git checkout -b release-${{ inputs.version }}
git checkout -b release-TEST
git push -u origin release-${{ inputs.version }}
gh pr create --base main --title "Release TEST" --body-file "release-notes-body"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ dist/
*.log
*.tsbuildinfo
*.zip
release-notes-body

# Project lockfile only
package-lock.json
Expand Down

0 comments on commit 5f01be7

Please sign in to comment.