Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/backport_receive.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Update code with code from PoB2

on:
repository_dispatch:
types:
- port-changes

jobs:
apply-patch:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
ref: 'dev'
- name: Apply patch
run: |
curl -L ${{ github.event.client_payload.patch_url }} | git apply -v --index
- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
with:
title: \[pob2-port\] ${{ github.event.client_payload.title }}
branch: pob2-pr-${{ github.event.client_payload.id }}
body: |
${{ github.event.client_payload.msg }}
author: ${{ github.event.client_payload.name || github.event.client_payload.user }} <${{ github.event.client_payload.user }}@users.noreply.github.com>
commit-message: ${{ github.event.client_payload.msg }}
labels: ${{ github.event.client_payload.labels }}
2 changes: 1 addition & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# How to release Path of Building Community

## Prerequisites
## Prerequisites12

## Choosing a new version number

Expand Down
2 changes: 1 addition & 1 deletion help.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ While holding shift scroll bars in the help section and version history will jum

General Shortcuts:

Ctrl + 1 Jump to tree tab
Ctrl + 1 Jump to trees tab
Ctrl + 2 Jump to skills tab
Ctrl + 3 Jump to items tab
Ctrl + 4 Jump to calcs tab
Expand Down