LedgerSMB
LedgerSMB copied to clipboard
Incorporate the ADR index creation into an automated process?
Need to decide if the create ADR index code create_adr_index is going to be run:
- manually (whenever ADRs are changed) or,
- automatically at as part of the build, release or prep for release process.
If manually, then there are no additional changes required and this issue can be closed.
If automatically, then 2 changes need to be made:
- [ ] Remove the code in
create_adr_indexlines 114 - 115 that add the last build date to the end ofindex.md. This is not needed if the code is run automatically and will result in unnecessary git changes even whenindex.md's main content does not change. - [ ] Add the execution of
create_adr_indexto the selected automated process.
What about running it as part of our test suite and failing the test of the file changes? Like the test for the README file and the "blacklist" SQL file.
Works for me. We would still need to remove create_adr_index lines 114 - 115 .