Skip to content

Commit d8dc4b5

Browse files
author
Ivan Zhakov
committed
On 1.14.x: Merge r1924628, r1934091, r1934092, r1934095, r1934096, r1934116
from trunk: GHA: Catch up merge changes for detect-backport-conflicts.yml from trunk. Justification: Keep GitHub Actions configuration in sync with trunk. Votes: +1: ivan (only affects GHA) git-svn-id: https://svn.apache.org/repos/asf/subversion/branches/1.14.x@1935957 13f79535-47bb-0310-9956-ffa450edef68
1 parent 2f67e61 commit d8dc4b5

1 file changed

Lines changed: 9 additions & 7 deletions

File tree

.github/workflows/detect-backport-conflicts.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,16 +16,15 @@
1616
# specific language governing permissions and limitations
1717
# under the License.
1818
#
19-
# autoconf.yml -- Configuration for autoconf GitHub Action workflow.
19+
# detect-backport-conflicts.yml -- Configuration for backportbot
20+
# GitHub Action workflow.
2021
#
2122

2223
name: backportbot
2324

2425
on:
2526
push:
26-
branches: ["1.14.x"]
27-
pull_request:
28-
branches: ["1.14.x"]
27+
branches: ["1.14.x", "1.15.x"]
2928

3029
concurrency:
3130
group: ${{ github.workflow }}-${{ github.ref }}
@@ -42,10 +41,13 @@ jobs:
4241
sudo apt-get update &&
4342
sudo apt-get install
4443
subversion
45-
44+
45+
- name: Obtain tools/dist
46+
run: svn export https://svn.apache.org/repos/asf/subversion/trunk/tools/dist tools-dist
47+
4648
- name: Checkout backport branch
47-
run: svn co https://svn.apache.org/repos/asf/subversion/branches/1.14.x
49+
run: svn co https://svn.apache.org/repos/asf/subversion/branches/${{ github.ref_name }} branch-wc
4850

4951
- name: Detect conflicting backports
50-
run: cd 1.14.x && ./tools/dist/detect-conflicting-backports.py
52+
run: cd branch-wc && ../tools-dist/detect-conflicting-backports.py
5153

0 commit comments

Comments
 (0)