Update update-topics.yaml
parent
9856863b03
commit
fe3d7f3fa9
|
@ -34,12 +34,12 @@ jobs:
|
||||||
const { HS_URL, TOKEN, RELEASE_STATUS, LOBBY_ROOM_ID, PUBLIC_ROOM_ID, ANNOUNCEMENT_ROOM_ID } = process.env;
|
const { HS_URL, TOKEN, RELEASE_STATUS, LOBBY_ROOM_ID, PUBLIC_ROOM_ID, ANNOUNCEMENT_ROOM_ID } = process.env;
|
||||||
|
|
||||||
const repo = context.repo;
|
const repo = context.repo;
|
||||||
const { data } = await octokit.rest.repos.getLatestRelease({
|
const { data } = await github.rest.repos.getLatestRelease({
|
||||||
owner: repo.owner,
|
owner: repo.owner,
|
||||||
repo: repo.repo,
|
repo: repo.repo,
|
||||||
});
|
});
|
||||||
|
|
||||||
const releaseTopic = `Stable: ${{ data.tag_name }} | ${RELEASE_STATUS}`;
|
const releaseTopic = `Stable: ${data.tag_name} | ${RELEASE_STATUS}`;
|
||||||
|
|
||||||
const regex = /Stable: v(\d+.\d+.\d+) \| Release status: (\w+) expected (\w+ \d+\w+)/gm;
|
const regex = /Stable: v(\d+.\d+.\d+) \| Release status: (\w+) expected (\w+ \d+\w+)/gm;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue