Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ggodlewski committed Oct 18, 2024
1 parent c0e622f commit 3a077cf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/feat-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,7 @@ jobs:
steps:
- name: Create pull request
run: |
gh_pr_up() { gh pr create $* || gh pr edit $* }
gh_pr_up() {
gh pr create $* || gh pr edit $*
}
gh_pr_up --draft --branch master --template ".github/pull_request.md" --title "${BRANCH_NAME}" --body "Description"
3 changes: 2 additions & 1 deletion .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,8 @@ jobs:
continue-on-error: true

- name: "Create empty volume"
run: docker volume rm -f "pr-${{ github.event.number }}" ; docker volume create "pr-${{ github.event.number }}"
run: docker volume create "pr-${{ github.event.number }}"
continue-on-error: true

- name: Start
run: |
Expand Down

0 comments on commit 3a077cf

Please sign in to comment.