-
Notifications
You must be signed in to change notification settings - Fork 0
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
Action to fetch repo data for publishing to the blog #3
Open
petronbot
wants to merge
34
commits into
main
Choose a base branch
from
repo-data
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
34 commits
Select commit
Hold shift + click to select a range
bf6697b
add workflow action
0778a30
add template for issues list
2e05dad
git shenannigans
f2d295a
Flat: latest data (2021-08-11T01:02:49.166Z)
flat-data 2d19d52
add response processing
petronbot a58e3c5
i guess no subfolders in the workflows folder
petronbot e23c3d2
Flat: latest data (2021-08-11T01:27:24.536Z)
flat-data 9e764b6
i guess no subfolders in the workflows folder
petronbot 9066b90
Flat: latest data (2021-08-11T01:33:23.386Z)
flat-data bf87745
fiddle with the axios config
petronbot c61d87a
ignore pancake generated sass file
petronbot 6b2fc65
remove dodgy Deno import
petronbot fd869f5
lol I'm so gonna squash this PR
petronbot 38d8d00
what's deno anyway
petronbot 8f6cebe
deno api changes
petronbot 30387d4
oops
petronbot ec2df3e
i'm outta practice
petronbot f58d989
ok
petronbot edc9f0f
lol
petronbot 4958658
jfc
petronbot 380006b
debuggin postprocessing
petronbot 3a2587e
save data file outside actions dir
petronbot 1f7e1fb
Flat: latest data (2021-08-12T01:55:25.200Z)
flat-data 60612c6
update postprocess file ref
petronbot 22cd1e5
Flat: latest data (2021-08-12T01:57:59.047Z)
flat-data 08c7fec
got it together
petronbot ea2b683
add new date filter
petronbot f761444
Flat: latest data (2021-08-12T04:26:48.863Z)
flat-data 1096de7
fix typo
petronbot 64c377f
line ending
petronbot 25dfcae
apostrphes
petronbot 0809094
remove unused data file
petronbot d8effb0
line ending
petronbot 4ac008a
name change
petronbot File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fiddle with the axios config
- Loading branch information
commit bf877457346a948839e8864d021953154d1e4c80
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"method": "post", | ||
"data": { | ||
"query": "query { repository(owner: \"designsystemau\", name: \"blog-site\") {\n name\n codeOfConduct {\n body\n }\n issues(first: 20) {\n totalCount\n nodes {\n id\n url\n number\n lastEditedAt\n createdAt\n title\n bodyHTML\n participants(first: 20) {\n totalCount\n nodes {\n id\n url\n name\n avatarUrl\n }\n }\n comments(first: 1) {\n totalCount\n nodes {\n id\n url\n lastEditedAt\n createdAt\n bodyHTML\n author {\n url\n avatarUrl\n login\n }\n }\n }\n }\n }\n pullRequests(first: 20) {\n totalCount\n nodes {\n id\n permalink\n title\n participants(first: 20) {\n totalCount\n nodes {\n id\n url\n name\n avatarUrl\n }\n }\n comments(first: 1) {\n totalCount\n nodes {\n id\n url\n lastEditedAt\n createdAt\n bodyHTML\n author {\n url\n avatarUrl\n login\n }\n }\n }\n }\n }\n }\n}" | ||
"query": "{ repository(owner: \"designsystemau\", name: \"blog-site\") { name codeOfConduct { body } issues(first: 20) { totalCount nodes { id url number lastEditedAt createdAt title bodyHTML participants(first: 20) { totalCount nodes { id url name avatarUrl } } comments(first: 1) { totalCount nodes { id url lastEditedAt createdAt bodyHTML author { url avatarUrl login } } } } } pullRequests(first: 20) { totalCount nodes { id permalink title participants(first: 20) { totalCount nodes { id url name avatarUrl } } comments(first: 1) { totalCount nodes { id url lastEditedAt createdAt bodyHTML author { url avatarUrl login } } } } } } }" | ||
} | ||
} |
File renamed without changes.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we format this file at all?