Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
fix gh publish action; move from_curl to first in dropdown
Browse files Browse the repository at this point in the history
  • Loading branch information
archywillhe committed Oct 8, 2023
1 parent 0058dc9 commit 90e50de
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,10 @@ jobs:

# sentry-cli sourcemaps upload -r ${{ env.RELEASE_VERSION }} ./artifacts/*-latest-sentry

# - name: Configure Git user
# uses: Homebrew/actions/git-user-config@master
# with:
# username: ${{ (github.event_name == 'workflow_dispatch' && github.actor) || 'insomnia-infra' }}
- name: Configure Git user
uses: Homebrew/actions/git-user-config@master
with:
username: ${{ (github.event_name == 'workflow_dispatch' && github.actor) || 'insomnia-infra' }}

- name: Merge git branch into main
run: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,13 @@ export const RequestGroupActionsDropdown = ({
hint?: PlatformKeyCombinations;
action: () => void;
})[] = [
{
id: 'From Curl',
name: 'From Curl',
icon: 'terminal',
action: () => setPasteCurlModalOpen(true),

},
{
id: 'HTTP',
name: 'HTTP Request',
Expand Down Expand Up @@ -182,13 +189,6 @@ export const RequestGroupActionsDropdown = ({
parentId: requestGroup._id,
}),
},
{
id: 'From Curl',
name: 'From Curl',
icon: 'terminal',
action: () => setPasteCurlModalOpen(true),

},
{
id: 'New Folder',
name: 'New Folder',
Expand Down

0 comments on commit 90e50de

Please sign in to comment.