Skip to content

fix(overlays): extend cross-transport feed dedupe to all server2-capa… #3384

fix(overlays): extend cross-transport feed dedupe to all server2-capa…

fix(overlays): extend cross-transport feed dedupe to all server2-capa… #3384

name: Enhance Commit Messages
on:
push:
branches: [beta]
jobs:
enhance-commits:
if: "!contains(github.event.head_commit.message, '[auto-enhanced]') && !contains(github.event.head_commit.message, '[skip pages]') && github.actor != 'github-pages[bot]'"
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 2
token: ${{ github.token }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
- name: Install dependencies
run: npm install axios
- name: Configure Git
run: |
git config --global user.name "GitHub Actions Commit Enhancer"
git config --global user.email "actions@github.com"
- name: Enhance commit messages
id: enhance
env:
ZEN_API_TOKEN: ${{ secrets.ZEN_API_TOKEN }}
GITHUB_TOKEN: ${{ github.token }}
run: node .github/scripts/enhance-commits.js