Skip to content

Commit

Permalink
revert fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dni committed Sep 23, 2023
1 parent aed5001 commit 2a872e0
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,16 @@ jobs:
cd lnbits-extensions
git checkout -b $branch
# if there is another open PR
git pull origin $branch || echo "branch does not exist"
sh util.sh update_extension $repo_name $tag
git add -A
git commit -am "$title"
git push origin $branch
gh pr create --title "$title" --body "$body" --repo lnbits/lnbits-extensions
# check if pr exists before creating it
gh config set pager cat
check=$(gh pr list -H $branch | wc -l)
test $check -ne 0 || gh pr create --title "$title" --body "$body" --repo lnbits/lnbits-extensions

0 comments on commit 2a872e0

Please sign in to comment.