Skip to content

Commit

Permalink
fix: fixed curl command by adding line breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
florian-jaeger committed Jan 10, 2024
1 parent 4062cbc commit 97d8338
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/management_issue_assign.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
curl -X POST --fail \
-F token=${{ secrets.GITLAB_CI_TRIGGER_TOKEN }} \
-F "ref=main" \
-F "variables[ACTION]=ASSIGN"
-F "variables[ACTION]=ASSIGN" \
-F "variables[TITLE]=$TITLE" \
-F "variables[DESCRIPTION]=$BODY" \
-F "variables[ASSIGNEE]=$ASSIGNEE" \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/management_issue_closure.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
curl -X POST --fail \
-F token=${{ secrets.GITLAB_CI_TRIGGER_TOKEN }} \
-F "ref=main" \
-F "variables[ACTION]=CLOSE"
-F "variables[ACTION]=CLOSE" \
-F "variables[TITLE]=$TITLE" \
-F "variables[DESCRIPTION]=$BODY" \
-F "variables[URL]=$URL" \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/management_issue_creation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
curl -X POST --fail \
-F token=${{ secrets.GITLAB_CI_TRIGGER_TOKEN }} \
-F "ref=main" \
-F "variables[ACTION]=OPEN"
-F "variables[ACTION]=OPEN" \
-F "variables[TITLE]=$TITLE" \
-F "variables[DESCRIPTION]=$BODY" \
-F "variables[URL]=$URL" \
Expand Down

0 comments on commit 97d8338

Please sign in to comment.