mirror of
https://github.com/Unleash/unleash.git
synced 2025-09-10 17:53:36 +02:00
More debug
This commit is contained in:
parent
a27628c271
commit
16502a9769
11
.github/workflows/gradual-strict-null-checks.yml
vendored
11
.github/workflows/gradual-strict-null-checks.yml
vendored
@ -41,12 +41,23 @@ jobs:
|
|||||||
URL: ${{ github.event.pull_request.comments_url }}
|
URL: ${{ github.event.pull_request.comments_url }}
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
run: |
|
run: |
|
||||||
|
find_comment() {
|
||||||
|
curl -L \
|
||||||
|
-H "Accept: application/vnd.github+json" \
|
||||||
|
-H "Authorization: token $GITHUB_TOKEN"\
|
||||||
|
-H "X-GitHub-Api-Version: 2022-11-28" \
|
||||||
|
https://api.github.com/repos/OWNER/REPO/pulls/PULL_NUMBER/comments
|
||||||
|
}
|
||||||
|
|
||||||
comment () {
|
comment () {
|
||||||
curl -X POST $URL \
|
curl -X POST $URL \
|
||||||
-H "Content-Type: application/json" \
|
-H "Content-Type: application/json" \
|
||||||
-H "Authorization: token $GITHUB_TOKEN" \
|
-H "Authorization: token $GITHUB_TOKEN" \
|
||||||
--data "{ \"body\": \"${1}\" }"
|
--data "{ \"body\": \"${1}\" }"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
echo "${{ toJSON(github.event.pull_request) }}"
|
||||||
|
|
||||||
set -x
|
set -x
|
||||||
YARN_1="yarn --mutex network --cwd ./current"
|
YARN_1="yarn --mutex network --cwd ./current"
|
||||||
YARN_2="yarn --mutex network --cwd ./main"
|
YARN_2="yarn --mutex network --cwd ./main"
|
||||||
|
Loading…
Reference in New Issue
Block a user