File tree 2 files changed +4
-2
lines changed
2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -20,3 +20,4 @@ profiles_settings.xml
20
20
Project_Default.xml
21
21
.idea
22
22
ee_release
23
+ changelog.txt
Original file line number Diff line number Diff line change @@ -5,15 +5,16 @@ echo "## What's Changed" > changelog.txt
5
5
createdAt=$( gh api graphql -F owner=' EasyEngine' -F name=' easyengine' -f query='
6
6
query {
7
7
repository(owner: "EasyEngine", name: "easyengine") {
8
- releases(last : 1) {
8
+ releases(first : 1, orderBy: { field: CREATED_AT, direction: DESC } ) {
9
9
nodes { tagName, createdAt }
10
10
}
11
11
}
12
12
}
13
13
' | jq -r ' .data.repository.releases.nodes[0].createdAt' )
14
+
14
15
gh api graphql --paginate -f query="
15
16
query {
16
- search(query: \" org:Easyengine updated:>$createdAt state:closed is:pr\" , type:ISSUE,first: 100) {
17
+ search(query: \" org:Easyengine updated:>$createdAt state:closed is:pr\" , type:ISSUE, first: 100) {
17
18
repositoryCount
18
19
edges {
19
20
node {
You can’t perform that action at this time.
0 commit comments