Generates a catalogue of BEQs in markdown format from the BEQ avs thread
- create a personal access token (user profile > settings > developer settings > personal access tokens or https://github.com/settings/tokens) with the public repo entitlements
- add that token as a secret named
TRIGGER_BEQCATALOGUE
in your repo (repo settings > secrets) - create a workflow in your repo as per https://github.com/3ll3d00d/beqcatalogue/blob/master/.github/workflows/trigger.yaml (i.e. copy this file to your repo)
Push a change to your repo The trigger workflow should complete successfully Check the repo rebuilds ok - https://github.com/3ll3d00d/beqcatalogue/actions?query=workflow%3A%22update+catalogue%22+event%3Arepository_dispatch
first.csv generated (v slowly) using
git ls-files -z | xargs -0 -n1 -I{} -- git --no-pager log --diff-filter=A --follow --format="\"{}\",%at" {} | sort
last.csv generated using
git ls-files -z | xargs -0 -n1 -I{} -- git log -1 --format="\"{}\",%at" {} | sort