Skip to content

Commit 333f1e9

Browse files
Add release workflow
1 parent 6b8830c commit 333f1e9

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

Diff for: .github/workflows/release.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Create Github release
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*.*.*"
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
build:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
- name: Release
18+
uses: softprops/action-gh-release@v2
19+
with:
20+
generate_release_notes: true

Diff for: renovate.json5

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
],
66
"prConcurrentLimit": 3,
77
"rebaseWhen": "conflicted",
8+
"labels": [
9+
"Dependencies"
10+
],
811
"packageRules": [
912
{
1013
"description": "automatically merge test, logging and build dependencies",

Diff for: src/test/java/org/opentripplanner/IntegrationTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public void planPlaceToPlaceWithBanned() throws IOException {
163163

164164
assertFalse(checkTransitLegCondition(result, leg -> leg.agency().id().equals(BANNED_AGENCY)));
165165

166-
//assertFalse(checkTransitLegCondition(result, leg -> leg.route().id().equals(BANNED_ROUTE)));
166+
assertFalse(checkTransitLegCondition(result, leg -> leg.route().id().equals(BANNED_ROUTE)));
167167

168168
assertFalse(checkTransitLegCondition(result, leg -> leg.trip().id().equals(BANNED_TRIP)));
169169
}

0 commit comments

Comments
 (0)