Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
shibd committed Nov 13, 2023
1 parent da9897e commit 08e1b71
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pr-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- uses: actions/checkout@v3
with:
repository: streamnative/streamnative-ci
token: ${{ secrets.BOT }}
token: ${{ secrets.SNBOT_GITHUB_TOKEN }}
path: ci
ref: master

Expand Down
9 changes: 9 additions & 0 deletions sync.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ async function getDoc(organization, repository, version, name) {
version,
"/docs/" + name
);
console.log(docLink)
let res = await axios.get(docLink, {
headers: {
Authorization: `Bearer ${process.env.ACCESS_TOKEN}`,
Expand Down Expand Up @@ -254,3 +255,11 @@ async function fetchDocs() {
}

fetchDocs();

// const doc = await getDoc(
// 'streamnative',
// 'pulsar-io-aws-lambda',
// 'v3.1.0.5',
// "aws-lambda-sink.md"
// );
// console.log(doc)

0 comments on commit 08e1b71

Please sign in to comment.