Create workflow template update PR
curl --request POST \
--url https://lanesync.dev/api/repos/{repoId}/workflow-update-pr \
--header 'Content-Type: application/json' \
--cookie connect.sid= \
--data '
{
"pat": "<string>"
}
'import requests
url = "https://lanesync.dev/api/repos/{repoId}/workflow-update-pr"
payload = { "pat": "<string>" }
headers = {
"cookie": "connect.sid=",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {cookie: 'connect.sid=', 'Content-Type': 'application/json'},
body: JSON.stringify({pat: '<string>'})
};
fetch('https://lanesync.dev/api/repos/{repoId}/workflow-update-pr', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://lanesync.dev/api/repos/{repoId}/workflow-update-pr",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'pat' => '<string>'
]),
CURLOPT_COOKIE => "connect.sid=",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://lanesync.dev/api/repos/{repoId}/workflow-update-pr"
payload := strings.NewReader("{\n \"pat\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("cookie", "connect.sid=")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://lanesync.dev/api/repos/{repoId}/workflow-update-pr")
.header("cookie", "connect.sid=")
.header("Content-Type", "application/json")
.body("{\n \"pat\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://lanesync.dev/api/repos/{repoId}/workflow-update-pr")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["cookie"] = 'connect.sid='
request["Content-Type"] = 'application/json'
request.body = "{\n \"pat\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "UP_TO_DATE",
"prNumber": 123,
"prUrl": "<string>",
"targetRevision": "<string>",
"installedRevision": "<string>",
"managedFiles": [
"<string>"
],
"branch": "lanesync-workflow-update-e7af415b2818"
}{
"error": "<string>"
}Repos
Create workflow template update PR
Opens or reuses a GitHub PR that refreshes LaneSync-managed workflow files. Optional PAT in body when the App lacks workflows:write.
POST
/
api
/
repos
/
{repoId}
/
workflow-update-pr
Create workflow template update PR
curl --request POST \
--url https://lanesync.dev/api/repos/{repoId}/workflow-update-pr \
--header 'Content-Type: application/json' \
--cookie connect.sid= \
--data '
{
"pat": "<string>"
}
'import requests
url = "https://lanesync.dev/api/repos/{repoId}/workflow-update-pr"
payload = { "pat": "<string>" }
headers = {
"cookie": "connect.sid=",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {cookie: 'connect.sid=', 'Content-Type': 'application/json'},
body: JSON.stringify({pat: '<string>'})
};
fetch('https://lanesync.dev/api/repos/{repoId}/workflow-update-pr', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://lanesync.dev/api/repos/{repoId}/workflow-update-pr",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'pat' => '<string>'
]),
CURLOPT_COOKIE => "connect.sid=",
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://lanesync.dev/api/repos/{repoId}/workflow-update-pr"
payload := strings.NewReader("{\n \"pat\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("cookie", "connect.sid=")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://lanesync.dev/api/repos/{repoId}/workflow-update-pr")
.header("cookie", "connect.sid=")
.header("Content-Type", "application/json")
.body("{\n \"pat\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://lanesync.dev/api/repos/{repoId}/workflow-update-pr")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["cookie"] = 'connect.sid='
request["Content-Type"] = 'application/json'
request.body = "{\n \"pat\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"status": "UP_TO_DATE",
"prNumber": 123,
"prUrl": "<string>",
"targetRevision": "<string>",
"installedRevision": "<string>",
"managedFiles": [
"<string>"
],
"branch": "lanesync-workflow-update-e7af415b2818"
}{
"error": "<string>"
}Authorizations
GitHub OAuth session cookie
Path Parameters
Body
application/json
GitHub PAT (ghp_ or github_pat_) with Contents and Workflow write — required on minimal tier
⌘I