fix: add generated generated-raids folders to .gitignore (#46) #69
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: 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 }} |