Skip to content

Improve the github actions #4

Improve the github actions

Improve the github actions #4

Workflow file for this run

name: Semantic Versioning Label
on:
push:
branches:
- v2/master
jobs:
semver_tag_from_pr:

Check failure on line 9 in .github/workflows/semver-lable.yml

View workflow run for this annotation

GitHub Actions / Semantic Versioning Label

Invalid workflow file

The workflow is not valid. .github/workflows/semver-lable.yml (Line: 9, Col: 3): The workflow must contain at least one job with no dependencies.
needs: [golangci, test]
permissions:
contents: write
pull-requests: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: "0" # we need full git-history to determine the last semVer tag
- name: bump semVer
uses: simontheleg/semver-tag-from-pr-action@v1.4.0
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}