- introduce proper approach to retrieve tag before a given tag

- add configuration options for
  - path
  - configuration
  - fromTag, toTag
  - token
- allow to specify transformers to adjust information to a specific form
- allow to specify different templates
- speed up by limiting information to pull
- add logic to automatically resolve current
- use github actions logger
This commit is contained in:
Mike Penz
2020-10-16 15:52:24 +02:00
parent 5ec7a2d86f
commit 0a66008df0
18 changed files with 14515 additions and 158 deletions
+7
View File
@@ -0,0 +1,7 @@
const fs = require("fs");
export function readConfiguration(filename: string) {
const rawdata = fs.readFileSync(filename);
const configurationJSON: Configuration = JSON.parse(rawdata);
return configurationJSON;
}