Skip to content

Update Badge macOS-14-2405 #38

Update Badge macOS-14-2405

Update Badge macOS-14-2405 #38

Workflow file for this run

name: Update Badge
run-name: Update Badge ${{ github.event.inputs.NAME }}
on:
workflow_dispatch:
inputs:
NAME:
description: 'Name'
required: true
LABEL:
description: 'Label'
required: true
STATUS:
description: 'Status'
required: true
COLOR:
description: 'Color'
required: true
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v4
- name: Setup Badge
uses: RubbaBoy/[email protected]
with:
NAME: ${{ github.event.inputs.NAME }}
LABEL: ${{ github.event.inputs.LABEL }}
STATUS: ${{ github.event.inputs.STATUS }}
COLOR: ${{ github.event.inputs.COLOR }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}