Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#42 Use base ref instead. #63

Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
fbe4ba6
#42 Use base ref instead.
Ismoh Jul 11, 2022
d97ea34
#42 Adding comment to the pull request.
Ismoh Jul 11, 2022
90426e7
#42 Fixing syntax.
Ismoh Jul 11, 2022
5ac19c7
#42 Fixing syntax 2
Ismoh Jul 11, 2022
d10bda4
#42 Fixing syntax 3
Ismoh Jul 11, 2022
6611794
#42 Fixing syntax 4
Ismoh Jul 11, 2022
fe1a6dc
#42 Fixing syntax 5
Ismoh Jul 11, 2022
2db3d48
#42 Fixing syntax 6
Ismoh Jul 11, 2022
4fe68cb
#42 Fixing syntax 7
Ismoh Jul 11, 2022
18a905b
#42 Fixing syntax 8
Ismoh Jul 11, 2022
fa02bde
#42 Fixing syntax 9
Ismoh Jul 11, 2022
f042fdc
#42 Fixing syntax 10
Ismoh Jul 11, 2022
ab8d563
#42 Fixing syntax 11
Ismoh Jul 11, 2022
7acc02a
#42 Fixing syntax 12
Ismoh Jul 11, 2022
7163f75
#42 Fixing syntax 13
Ismoh Jul 11, 2022
b897e3e
#42 Escaping everything!
Ismoh Jul 11, 2022
d9bbf77
#42 Escaping everything! doesnt help
Ismoh Jul 11, 2022
0913b7c
#42 Escaping everything! doesnt help 2
Ismoh Jul 11, 2022
03df6ae
#42 Escaping everything! doesnt help 3
Ismoh Jul 11, 2022
3bca55f
#42 Escaping everything! doesnt help 4
Ismoh Jul 11, 2022
c7a6013
#42 Found the issue.
Ismoh Jul 11, 2022
01037ba
#42 Found the issue. 2
Ismoh Jul 11, 2022
f7f70b7
#42 Found the issue. 3
Ismoh Jul 11, 2022
fcdb90b
#42 Found the issue. 4
Ismoh Jul 11, 2022
870233d
#42 Found the issue. 5
Ismoh Jul 11, 2022
c7d0e98
#42 polishing
Ismoh Jul 11, 2022
edf697a
#42 polishing 2
Ismoh Jul 11, 2022
c92b687
#42 polishing 3
Ismoh Jul 11, 2022
f3bc02b
#42 Colon is fycking up the json body.
Ismoh Jul 11, 2022
7c0c4f2
#42 Colon is fycking up the json body. 2
Ismoh Jul 11, 2022
4a39f19
#42 Colon is fycking up the json body. 3
Ismoh Jul 11, 2022
1c110f7
#42 Colon is fycking up the json body. 4
Ismoh Jul 11, 2022
073cd6e
#42 Triple escape characters.
Ismoh Jul 11, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
#42 Triple escape characters.
  • Loading branch information
Ismoh committed Jul 11, 2022
commit 073cd6e166d00d8da673736d0aa9b8b1cfa7fac4
4 changes: 2 additions & 2 deletions .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ jobs:

- name: Add comment to pull request
run: |
body="{\"body\":\"When this pull request was merged,\r\n- Version will be automatically increase to **$NEXT_VERSION** in **${{ github.base_ref }}**\r\n- Tag **$NEXT_VERSION** will be created to the specific commit.\"}"
body="{\"body\":\"When this pull request was merged\\\:\r\n- Version will be automatically increase to **$NEXT_VERSION** in **${{ github.base_ref }}**\r\n- Tag **$NEXT_VERSION** will be created to the specific commit.\"}"
echo "body=$body"

curlResponse=`curl --verbose --request POST \
curlResponse=`curl --write-out '%{http_code}' --output /dev/null --request POST \
--header 'Accept: application/vnd.github+json' \
--header 'Authorization: token ${{ github.token }}' \
--url 'https://api.github.com/repos/${{github.repository}}/issues/${{github.event.number}}/comments' \
Expand Down