Skip to content

Commit

Permalink
Add release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardehrenfried committed Nov 23, 2024
1 parent 6b8830c commit 333f1e9
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 1 deletion.
20 changes: 20 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Create Github release

on:
push:
tags:
- "v*.*.*"

permissions:
contents: write

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
3 changes: 3 additions & 0 deletions renovate.json5
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
],
"prConcurrentLimit": 3,
"rebaseWhen": "conflicted",
"labels": [
"Dependencies"
],
"packageRules": [
{
"description": "automatically merge test, logging and build dependencies",
Expand Down
2 changes: 1 addition & 1 deletion src/test/java/org/opentripplanner/IntegrationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public void planPlaceToPlaceWithBanned() throws IOException {

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

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

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

0 comments on commit 333f1e9

Please sign in to comment.