Skip to content

Commit

Permalink
fix: Syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
atsuyaw committed Oct 22, 2024
1 parent 66106a6 commit 142321f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
openPR:
runs-on: ubuntu-22.04
permissions:
pull-requests: read
pull-requests: write
steps:
- uses: actions/checkout@v4
- uses: tj-actions/changed-files@v45
Expand All @@ -33,23 +33,23 @@ jobs:
- name: Create PR
if: ${{ github.event_name }} != create
env:
GH_TOKEN: ${{ github.token }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh pr create \
--base "main" \
--head "${{ github.ref_name }}" \
--title "Release/${{ github.ref_name }}" \
--title "${{ github.ref_name }}" \
--body "" \
--draft
- name: Mark as post
if: steps.updCont.outputs.any_changed == true
env:
GH_TOKEN: ${{ github.token }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh pr edit --add-label "create post"
gh pr edit "${{ github.ref_name }}" --add-label "create post"
- name: Mark as dev
if: steps.updSrc.outputs.any_changed == true
env:
GH_TOKEN: ${{ github.token }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh pr edit --add-label "development"
gh pr edit "${{ github.ref_name }}" --add-label "development"

0 comments on commit 142321f

Please sign in to comment.