Skip to content

Commit a4c5903

Browse files
authored
Merge pull request #14 from OpenTabletDriver/main
Bump v4.x branch on release publish
2 parents 09970e9 + e56f78c commit a4c5903

5 files changed

Lines changed: 22 additions & 6 deletions

File tree

.github/workflows/default_release_notes.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,3 @@
33
- Download `tabletdrivercleanup.zip`.
44
- Extract the contents of the zip.
55
- Run `tabletdrivercleanup.exe` as administrator.
6-
7-
## What's Changed
8-

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
- "*"
77

88
jobs:
9-
build-win:
9+
build-win-and-release:
1010
runs-on: windows-latest
1111
permissions:
1212
contents: write
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
name: Update Config Branch
2+
3+
on:
4+
workflow_dispatch:
5+
release:
6+
types: [published]
7+
8+
jobs:
9+
create-pr:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
pull-requests: write
14+
steps:
15+
- uses: actions/checkout@v6
16+
- name: Create pull request
17+
run: gh pr create --base v4.x --title "Bump v4.x branch on release publish" --body ""
18+
env:
19+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A CLI program that cleanly uninstalls tablet drivers.
44

55
## Instructions
66

7-
- Download `tabletdrivercleanup.zip` from [latest release](https://github.com/X9VoiD/TabletDriverCleanup/releases).
7+
- Download `tabletdrivercleanup.zip` from [latest release](https://github.com/OpenTabletDriver/TabletDriverCleanup/releases).
88
- Extract the contents of the zip file.
99
- Run as administrator.
1010

src/services/identifiers.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ async fn get_resource_online(
134134
bail!(RetrievalErr::Disallowed("online"))
135135
}
136136

137-
let base_url = "https://raw.githubusercontent.com/X9VoiD/TabletDriverCleanup";
137+
let base_url = "https://raw.githubusercontent.com/OpenTabletDriver/TabletDriverCleanup";
138138
let git_ref = "v4.x";
139139
let url = format!("{base_url}/{git_ref}/config/{identifier}");
140140

0 commit comments

Comments
 (0)