Update Badge macOS-14-2405 #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |