1
0
mirror of https://github.com/SimonPistache/famfamfam-silk-svg.git synced 2025-06-08 01:54:20 +02:00

ci(#215): Fix auto-release not triggered (#216)

The Workflow file was using an invalid keyword `merged`. The right keyword to use is `closed`.
This commit is contained in:
Simon Priet 2025-03-13 16:00:02 +01:00 committed by GitHub
parent 37c12a26a7
commit 145e40d970
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -4,9 +4,9 @@ run-name: Release a new version of the icon pack on PR's merging
on: on:
pull_request: pull_request:
types: types:
- merged - closed
branches: branches:
- main - 'main'
jobs: jobs:
semantic-release: semantic-release:

View File

@ -1,7 +1,7 @@
plugins: plugins:
- "@semantic-release/commit-analyzer" - "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator" - "@semantic-release/release-notes-generator"
# - "@semantic-release/changelog" - "@semantic-release/changelog"
- "@semantic-release/git" - "@semantic-release/git"
- "@semantic-release/github" - "@semantic-release/github"