mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
disable "Merge back into master" step in the release process (no-changelog)
this doesn't work
This commit is contained in:
32
.github/workflows/release-publish.yml
vendored
32
.github/workflows/release-publish.yml
vendored
@@ -128,19 +128,19 @@ jobs:
|
|||||||
- name: Trigger a release note
|
- name: Trigger a release note
|
||||||
run: curl -u docsWorkflows:${{ secrets.N8N_WEBHOOK_DOCS_PASSWORD }} --request GET 'https://internal.users.n8n.cloud/webhook/trigger-release-note' --header 'Content-Type:application/json' --data '{"version":"${{ needs.publish-to-npm.outputs.release }}"}'
|
run: curl -u docsWorkflows:${{ secrets.N8N_WEBHOOK_DOCS_PASSWORD }} --request GET 'https://internal.users.n8n.cloud/webhook/trigger-release-note' --header 'Content-Type:application/json' --data '{"version":"${{ needs.publish-to-npm.outputs.release }}"}'
|
||||||
|
|
||||||
merge-back-into-master:
|
# merge-back-into-master:
|
||||||
name: Merge back into master
|
# name: Merge back into master
|
||||||
needs: [publish-to-npm, create-github-release]
|
# needs: [publish-to-npm, create-github-release]
|
||||||
if: ${{ github.event.pull_request.merged == true && !contains(github.event.pull_request.labels.*.name, 'release:patch') }}
|
# if: ${{ github.event.pull_request.merged == true && !contains(github.event.pull_request.labels.*.name, 'release:patch') }}
|
||||||
runs-on: ubuntu-latest
|
# runs-on: ubuntu-latest
|
||||||
steps:
|
# steps:
|
||||||
- uses: actions/checkout@v4.1.1
|
# - uses: actions/checkout@v4.1.1
|
||||||
with:
|
# with:
|
||||||
fetch-depth: 0
|
# fetch-depth: 0
|
||||||
- run: |
|
# - run: |
|
||||||
git checkout --track origin/master
|
# git checkout --track origin/master
|
||||||
git config user.name "github-actions[bot]"
|
# git config user.name "github-actions[bot]"
|
||||||
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
|
# git config user.email 41898282+github-actions[bot]@users.noreply.github.com
|
||||||
git merge --ff n8n@${{ needs.publish-to-npm.outputs.release }}
|
# git merge --ff n8n@${{ needs.publish-to-npm.outputs.release }}
|
||||||
git push origin master
|
# git push origin master
|
||||||
git push origin :${{github.event.pull_request.base.ref}}
|
# git push origin :${{github.event.pull_request.base.ref}}
|
||||||
|
|||||||
Reference in New Issue
Block a user