Closed johnd0e closed 2 years ago
I don't see an easy way to do that(
git log
?
Now server does not store the git repository. Need to somehow pass hash of current commit and display only new changes. And if history is rewritten and last commit is lost, from whence is the change shown?
Need to somehow pass hash of current commit and display only new changes.
We do not need track every single change. With every deploy we can replace test-builds news with raw git log, from latest tag to HEAD.
git log $(git describe --tags --abbrev=0)..@ --no-merges
(may be also format output with --decorate
)
This should be part of deploy
script.
git log
may be confusing it there are a lot of changes from different PRs (like now).
So may be better just list PRs in Testing
column of 'Project 1'.
https://developer.github.com/v3/projects/columns/
List of cards:
curl -H "Authorization: token XXX" -H "Accept: application/vnd.github.inertia-preview+json" -H https://api.github.com/projects/columns/4307834/cards
To get more info about each card we need extract field content_url
.
Each card
curl -H "Authorization: token XXX" -H "Accept: application/vnd.github.3.full.inertia-preview+json" https://api.github.com/repos/IITC-CE/ingress-intel-total-conversion/issues/101
Resonators info is not available since 2014, so get rid of unused stuff.
\nAlso remove panoramio links processing as it's gone long time ago.
So we need extract fields title
, body_html
, html_url
.
Brief googling results (no particular order)
some blogs reviews
We refused to publish test-builds. Now the site publishes build artifacts of specific PR
It would be convenient to see some info what is new in test-builds