File tree 1 file changed +3
-6
lines changed
1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -41,14 +41,14 @@ jobs:
41
41
echo "Project Item ID: $ITEM_ID"
42
42
echo "ITEM_ID=$ITEM_ID" >> $GITHUB_ENV
43
43
44
- - name : Debug – Get PR Project Status – raw data
44
+ - name : Debug – Get PR Project Status – Only __typename
45
45
id : debug_status
46
46
env :
47
47
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
48
48
run : |
49
49
PROJECT_ITEM_ID=${{ env.ITEM_ID }}
50
50
51
- echo "Fetching raw project status data ..."
51
+ echo "Fetching project status type information ..."
52
52
53
53
RAW_RESPONSE=$(gh api graphql -f query='
54
54
query {
@@ -57,16 +57,13 @@ jobs:
57
57
fieldValues(first : 10) {
58
58
nodes {
59
59
__typename
60
- field {
61
- __typename
62
- }
63
60
}
64
61
}
65
62
}
66
63
}
67
64
}')
68
65
69
- echo "Raw Response : $RAW_RESPONSE"
66
+ echo "Raw Type Response : $RAW_RESPONSE"
70
67
71
68
- name : Apply or Remove "Do Not Merge" Label
72
69
env :
You can’t perform that action at this time.
0 commit comments