6
mirror of https://github.com/AllSpiceIO/carbon-emission-calculator.git synced 2025-04-04 01:56:54 +00:00
carbon-emission-calculator/action.yml

26 lines
780 B
YAML

name: "Calculate the carbon sum emission figure for the components in a PCBA given a data source with emissions data"
description: >
Calculate the carbon sum emission figure for the components in a PCBA given a data source with emissions data
inputs:
bom_file:
description: "Path to the BOM CSV file"
required: true
output_file:
description: "Path to the output CSV or Markdown file"
required: false
markdown:
description: "Whether to output the results in Markdown format"
required: false
default: "False"
runs:
using: "docker"
image: "Dockerfile"
args:
- ${{ inputs.bom_file }}
- "--output-file"
- ${{ inputs.output_file }}
- "--markdown"
- ${{ inputs.markdown }}
env:
ALLSPICE_AUTH_TOKEN: ${{ github.token }}