mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-28 03:24:59 +02:00
46 lines
1.9 KiB
YAML
46 lines
1.9 KiB
YAML
name: 'CI: Detect New Packages on Master'
|
|
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- closed
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
detect-new-packages:
|
|
name: Check for new unpublished packages
|
|
runs-on: ubuntu-latest
|
|
if: github.event.pull_request.merged == true
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
|
|
- name: Setup Node.js
|
|
uses: ./.github/actions/setup-nodejs
|
|
with:
|
|
build-command: ''
|
|
install-command: pnpm install --frozen-lockfile --dir ./.github/scripts --ignore-workspace
|
|
cache-dependency-path: .github/scripts/pnpm-lock.yaml
|
|
|
|
- name: Check for new unpublished packages
|
|
id: detect
|
|
continue-on-error: true
|
|
run: node .github/scripts/detect-new-packages.mjs
|
|
|
|
- name: Notify Slack about new packages
|
|
if: steps.detect.outcome == 'failure' && steps.detect.outputs.packages != ''
|
|
env:
|
|
SLACK_TOKEN: ${{ secrets.RELEASE_HELPER_SLACK_TOKEN }}
|
|
MESSAGE: |-
|
|
:warning: *New unpublished packages detected* after merging <${{ github.event.pull_request.html_url }}|PR #${{ github.event.pull_request.number }}: ${{ github.event.pull_request.title }}>
|
|
|
|
The following packages do not exist on npm yet: `${{ steps.detect.outputs.packages }}`
|
|
|
|
*If a package is not intended for npm*, set `"private": true` in its `package.json` to exclude it from future checks.
|
|
|
|
*Otherwise, to unblock the next release:*
|
|
1. Run the <${{ github.server_url }}/${{ github.repository }}/actions/workflows/release-publish-new-package.yml|Release: Publish New Package> workflow for each package
|
|
2. Configure Trusted Publishing on npmjs.com (owner: `n8n-io`, repo: `n8n`, workflow: `release-publish.yml`)
|
|
run: node .github/scripts/slack/notify.mjs --channel C036AELNMV0 --text "$MESSAGE"
|