semantic-release-action icon indicating copy to clipboard operation
semantic-release-action copied to clipboard

GitHub Action for Semantic Release

Results 30 semantic-release-action issues
Sort by recently updated
recently updated
newest added

I have the following workflow config: ```yaml name: Semantic Release on: push: branches: [main] jobs: release: name: Release version permissions: contents: write runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v3...

**Describe the bug** We would like to generate next release version in pull request. **Workflow** Prerelease action ``` - name: Release check id: release-check uses: cycjimmy/semantic-release-action@v3 with: dry_run: true ci:...

**Is your feature request related to a problem? Please describe.** It's a bit tedious with dependabot opening PRs for every patch for every action we use. **Describe the solution you'd...

**Describe the bug** When no new release is published, there is no `last_release_version` in the step output. **Workflow** 1. Create a workflow step using `semantic-release-action` and assign it an id...

**Describe the bug** The `extends` parameter does not allow file pathes. **Expected behavior** As stated in the [documentation](https://semantic-release.gitbook.io/semantic-release/usage/configuration#extends): > List of modules or **file paths** containing a shareable configuration.

**Describe the bug** I have a workflow set to trigger on pushed tags, however when this semantic-release action creates a tag my other action is not triggered. I have set...

**Describe the bug** The issue I'm getting is that, with the 4.1.0 version I'm getting the above error where it cannot find the modules for conventional-changelog-conventionalcommits, I'm currently using github...

**Describe the bug** ``` [2:21:10 PM] [semantic-release] » i Start step "generateNotes" of plugin "@semantic-release/release-notes-generator" [2:21:10 PM] [semantic-release] » × Failed step "generateNotes" of plugin "@semantic-release/release-notes-generator" [2:21:10 PM] [semantic-release] »...

In my yaml, a `job` as follows. ``` jobs: deploy: runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@v2 - name: Use Node.js 20 uses: actions/setup-node@v2 with: node-version: '20' -...

**Is your feature request related to a problem? Please describe.** Actually, the github action doesn't output the dry_run variable. **Describe the solution you'd like** It would be straight forward to...