Compare commits
12 Commits
v0.0.2
...
dcbd133e7f
| Author | SHA1 | Date | |
|---|---|---|---|
| dcbd133e7f | |||
| 4721128914 | |||
| be6241f873 | |||
| 50b0c9ad6e | |||
| a661e15443 | |||
| be7cb63d99 | |||
| 8ffaa90594 | |||
| c3a7f917a9 | |||
| de15869ceb | |||
| 159518b08c | |||
|
|
8ab72fcdeb | ||
| f962a5a85d |
20
.gitea/workflows/release.yml
Normal file
20
.gitea/workflows/release.yml
Normal file
@@ -0,0 +1,20 @@
|
||||
name: Release
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: read # for checkout
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: Release
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
contents: write # to be able to publish a GitHub release
|
||||
issues: write # to be able to comment on released issues
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Determine release version and changelog
|
||||
run: npx semantic-release
|
||||
11
.releaserc.json
Normal file
11
.releaserc.json
Normal file
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"branches": [
|
||||
"main",
|
||||
"beta"
|
||||
],
|
||||
"plugins": [
|
||||
"@semantic-release/commit-analyzer",
|
||||
"@semantic-release/release-notes-generator"
|
||||
],
|
||||
"publish": false
|
||||
}
|
||||
16
CHANGELOG.md
Normal file
16
CHANGELOG.md
Normal file
@@ -0,0 +1,16 @@
|
||||
# Changelog
|
||||
|
||||
All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
||||
|
||||
## 1.0.0 (2025-09-20)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* expose production/consumption metrics as metrics.prom ([8a91112](https://git.bjornp.com/bjorn/factorio-prometheus-exporter/commit/8a911129f68eef90db974abcb8be9b059e5567c3))
|
||||
* **prometheus-exporter:** add metrics-pole for power metrics ([25026b2](https://git.bjornp.com/bjorn/factorio-prometheus-exporter/commit/25026b2e732cb8a1074e8d8f73edf576565f3b9e))
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **prometheus-exporter:** fix metric naming to be consistent with prometheus reqs ([431b73e](https://git.bjornp.com/bjorn/factorio-prometheus-exporter/commit/431b73ee2dd7b3d78076a4eda6af813072f18678))
|
||||
@@ -1,9 +1,11 @@
|
||||
{
|
||||
"name": "prometheus-exporter",
|
||||
"version": "0.0.1",
|
||||
"title": "Prometheus Exporter for Factorio",
|
||||
"author": "Bjorn Pijnacker",
|
||||
"factorio_version": "2.0",
|
||||
"dependencies": ["base >= 2.0"],
|
||||
"description": "Exports certain production and consumption metrics to Prometheus format, to be used by Prometheus/Grafana monitoring stack"
|
||||
"name": "prometheus-exporter",
|
||||
"version": "1.0.0",
|
||||
"title": "Prometheus Exporter for Factorio",
|
||||
"author": "Bjorn Pijnacker",
|
||||
"factorio_version": "2.0",
|
||||
"dependencies": [
|
||||
"base >= 2.0"
|
||||
],
|
||||
"description": "Exports certain production and consumption metrics to Prometheus format, to be used by Prometheus/Grafana monitoring stack"
|
||||
}
|
||||
Reference in New Issue
Block a user