diff --git a/.github/tag-changelog-config.js b/.github/tag-changelog-config.js index 6d9b511..b4471a2 100644 --- a/.github/tag-changelog-config.js +++ b/.github/tag-changelog-config.js @@ -1,6 +1,7 @@ module.exports = { types: [ { types: ['feat', 'feature', 'Feat'], label: '🎉 New Features' }, + { types: ['security'], label: '🔐 Security' }, { types: ['fix', 'bugfix', 'Fix'], label: '🐛 Bugfixes' }, { types: ['improvements', 'enhancement'], label: '🔨 Improvements' }, { types: ['perf'], label: '🏎️ Performance Improvements' }, diff --git a/.github/workflows/new-release.yml b/.github/workflows/new-release.yml index ce8943b..ad2c76a 100644 --- a/.github/workflows/new-release.yml +++ b/.github/workflows/new-release.yml @@ -25,6 +25,8 @@ jobs: - name: Create tag if necessary uses: fregante/daily-version-action@fb1a60b7c4daf1410cd755e360ebec3901e58588 # v2.1.3 id: daily-version + with: + prefix: v - name: Create changelog text if: steps.daily-version.outputs.created diff --git a/.github/workflows/pr-lint.yml b/.github/workflows/pr-lint.yml index f93935c..af70d3e 100644 --- a/.github/workflows/pr-lint.yml +++ b/.github/workflows/pr-lint.yml @@ -25,7 +25,7 @@ on: env: # Apply linter fixes configuration - APPLY_FIXES: all + APPLY_FIXES: none APPLY_FIXES_EVENT: pull_request APPLY_FIXES_MODE: commit @@ -113,7 +113,7 @@ jobs: if: steps.ml.outputs.has_updated_sources == 1 shell: sh run: | - sudo chown -Rc $UID .git/ + sudo chown -Rc $(id -u) .git/ git config --global user.name "fiximus" git config --global user.email "github-bot@ivuorinen.net"