From 3dd443123af8a32ae7a1a5cb5a76e800868456f6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Thu, 2 Jan 2025 13:21:40 +0000 Subject: [PATCH] chore: created local '.github/workflows/pr_close.yml' from remote 'shared-files/github-actions/pr_close.yml.njk' --- .github/workflows/pr_close.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/pr_close.yml diff --git a/.github/workflows/pr_close.yml b/.github/workflows/pr_close.yml new file mode 100644 index 0000000..0e0bc6e --- /dev/null +++ b/.github/workflows/pr_close.yml @@ -0,0 +1,26 @@ +# -------------------------------------------------------------- +# WARNING: This file is managed by centralized sync management system. +# Do not edit this file directly, your changes will be overwritten. +# See https://github.com/orange-cloudavenue/workflows for more information. +# -------------------------------------------------------------- +name: PR Close +on: + pull_request: + types: [closed] + workflow_dispatch: + +concurrency: + group: ${{ github.ref }}-${{ github.head_ref }}-changelog + cancel-in-progress: true + +permissions: + contents: write + pull-requests: write + +jobs: + GenerateChangelog: + if: github.event.pull_request.merged || github.event_name == 'workflow_dispatch' + name: "Generate CHANGELOG" + uses: orange-cloudavenue/workflows/.github/workflows/changelog_generate-changelog.yml@main + secrets: + TOKEN: ${{ secrets.CHANGELOG_PAT }} \ No newline at end of file