Skip to content

fix: add generated generated-raids folders to .gitignore (#46) #69

fix: add generated generated-raids folders to .gitignore (#46)

fix: add generated generated-raids folders to .gitignore (#46) #69

Workflow file for this run

name: Post merge to main
on:
push:
branches: [main]
jobs:
first_test_job:
name: Find extra commits
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/[email protected]
- id: Fetch_tags
run: git fetch --prune --unshallow --tags
- run: git describe --tags
- id: set_output_tags
run: |
echo ::set-output name=extra_commits::$(git describe --tags)
- name: Set Badge
uses: RubbaBoy/BYOB@a4919104bc0ec7cfd7f113e42c405cc45246f2a4
with:
name: Version
label: "Version"
status: ${{ steps.set_output_tags.outputs.extra_commits }}
color: CFC03A
github_token: ${{ secrets.GITHUB_TOKEN }}