From e7d124e93f75db6442585cd5ed51c79f2b72bf66 Mon Sep 17 00:00:00 2001 From: Florian Hopfner Date: Sat, 5 Oct 2024 13:42:35 +0200 Subject: [PATCH] create unique patch branch name for each pull request branch Previously, if there were multiple pull requests A and B active at the same time, a run of this action for B would overwrite the branch with the fixes from a previous run for A. --- .github/workflows/update-generated-text.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/update-generated-text.yml b/.github/workflows/update-generated-text.yml index 11eaa17a..9cdfab18 100644 --- a/.github/workflows/update-generated-text.yml +++ b/.github/workflows/update-generated-text.yml @@ -47,4 +47,5 @@ jobs: This pull request was automatically created by the d365fo.tools-Generate-Text action' title: '🤖 Fix best practice deviations' - body: 'This pull request was automatically created by the d365fo.tools-Generate-Text action. See [Building tools](https://github.com/d365collaborative/d365fo.tools/wiki/Building-tools) for more information.' \ No newline at end of file + body: 'This pull request was automatically created by the d365fo.tools-Generate-Text action. See [Building tools](https://github.com/d365collaborative/d365fo.tools/wiki/Building-tools) for more information.' + branch: 'update-generated-text/pull-request-patch-for-branch-${{ github.ref_name }}' \ No newline at end of file