We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7a2ee2 commit 7b815c0Copy full SHA for 7b815c0
.github/workflows/auto-pr.yml
@@ -8,14 +8,11 @@ jobs:
8
if: github.ref_type == 'branch'
9
runs-on: ubuntu-latest
10
steps:
11
- -
12
- name: Checkout Branch ${{ github.ref_name }}
13
- uses: actions/checkout@v4
14
15
- name: Create Pull Request
16
- uses: bfren/pull-request@v2
17
- with:
18
- github_token: ${{ secrets.PAT }}
19
- destination_branch: main
20
- pr_title: ${{ github.ref_name }}
21
- pr_body: "Merging branch to create ${{ github.ref_name }}."
+ -
+ name: Checkout Branch ${{ github.ref_name }}
+ uses: actions/checkout@v4
+ name: Create Pull Request
+ run: gh pr create -B main --title "${{ github.ref_name }}" --body "Merging branch to create ${{ github.ref_name }}."
+ env:
+ GITHUB_TOKEN: ${{ secrets.PAT }}
0 commit comments