Skip to content

chore(deps): update github actions all dependencies (#61) #48

chore(deps): update github actions all dependencies (#61)

chore(deps): update github actions all dependencies (#61) #48

Workflow file for this run

name: Test and Release
on:
push:
branches: [main]
paths-ignore:
- '.github/sample.feature'
- '**.md'
- 'badges/**'
- '.eslintignore'
- '.github/linters/**'
- '.gitignore'
- '.gitattributes'
- '.prettier*'
- 'renovate.json'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
publish:

Check failure on line 23 in .github/workflows/merge.yml

View workflow run for this annotation

GitHub Actions / Test and Release

Invalid workflow file

The workflow is not valid. .github/workflows/merge.yml (Line: 23, Col: 3): The workflow must contain at least one job with no dependencies.
name: Publish
runs-on: ubuntu-24.04
needs: [test]
permissions:
contents: write
actions: write
attestations: write
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Conventional Changelog Update
uses: TriPSs/conventional-changelog-action@67139193614f5b9e8db87da1bd4240922b34d765
id: changelog
with:
github-token: ${{ github.token }}
output-file: 'CHANGELOG.md'
skip-version-file: 'true'
skip-commit: 'true'
git-push: 'true'
- name: Create Release
uses: softprops/action-gh-release@51cfd90a6d81cfe329568f851fe2236ab4416d17
if: steps.changelog.outputs.tag != ''
continue-on-error: true
env:
GITHUB_TOKEN: ${{ github.token }}
with:
token: ${{ github.token }}
tag_name: ${{ steps.changelog.outputs.tag }}
name: ${{ steps.changelog.outputs.tag }}
body: ${{ steps.changelog.outputs.clean_changelog }}