Skip to content

chore(deps): replace dependency eslint-plugin-vitest with @vitest/esl… #39

chore(deps): replace dependency eslint-plugin-vitest with @vitest/esl…

chore(deps): replace dependency eslint-plugin-vitest with @vitest/esl… #39

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:
test:

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): Error calling workflow 'bcgov/action-gherkin-issue-processor/.github/workflows/reusable-tests.yml@5a52c8e8720377d5f787d2f45fa200540a2452cf'. The workflow is requesting 'security-events: write', but is only allowed 'security-events: none'. .github/workflows/merge.yml (Line: 23, Col: 3): Error calling workflow 'bcgov/action-gherkin-issue-processor/.github/workflows/reusable-tests.yml@5a52c8e8720377d5f787d2f45fa200540a2452cf'. The nested job 'trivy' is requesting 'security-events: write', but is only allowed 'security-events: none'.
name: Action Test
permissions:
contents: read
uses: ./.github/workflows/reusable-tests.yml
publish:
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@v6
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@v2
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 }}