ci(dependabot): ignore release-please-action major updates #202
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CD | |
# **What it does**: Automatically generates releases and release notes. | |
# **Why we have it**: Allows development to focus on higher value work. | |
on: | |
push: | |
branches: | |
- main | |
# Allows this workflow to be run manually from the Actions tab | |
workflow_dispatch: | |
permissions: | |
contents: write | |
id-token: write | |
pull-requests: write | |
jobs: | |
release: | |
name: Create/Update Release Pull Request | |
runs-on: ubuntu-latest | |
steps: | |
- name: Release Please | |
id: release | |
# Staying on v3 for now as v4 introduced some questionable changes | |
uses: google-github-actions/release-please-action@v3 | |
with: | |
changelog-types: '[ { "type": "feat", "section": "Features", "hidden": false }, { "type": "fix", "section": "Bug fixes", "hidden": false }, { "type": "build", "section": "Dependencies", "hidden": false }, { "type": "chore", "section": "Miscellaneous", "hidden": false }, { "type": "ci", "section": "Continuous integration", "hidden": false }, { "type": "perf", "section": "Improvements", "hidden": false }, { "type": "refactor", "section": "Improvements", "hidden": false }, { "type": "style", "section": "Miscellaneous", "hidden": false }, { "type": "docs", "section": "Documentation", "hidden": false }]' | |
release-type: node | |
package-name: fastify-disablecache | |
- name: Check out repo | |
if: steps.release.outputs.release_created | |
uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- name: Setup Node | |
if: steps.release.outputs.release_created | |
uses: actions/setup-node@v4 | |
with: | |
node-version: lts/* | |
registry-url: https://registry.npmjs.org/ | |
- name: Publish to NPM | |
if: steps.release.outputs.release_created | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
# Remove dev values from package.json | |
run: | | |
npm pkg delete commitlint devDependencies jest scripts | |
npm publish --ignore-scripts --provenance |