Skip to content

Commit

Permalink
chore: Update dist
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Nov 2, 2023
1 parent 0bb023b commit ec0b41f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18656,6 +18656,7 @@ ${comments}`;




const set_resource_on_asset_ATLAN_INSTANCE_URL =
getInstanceUrl();

Expand All @@ -18672,12 +18673,13 @@ async function setResourceOnAsset({ octokit, context }) {
).length;

for (const { fileName, filePath } of changedFiles) {
const assetName = await getAssetName({
const aliasName = await getAssetName({
octokit,
context,
fileName,
filePath,
});
const assetName = isIgnoreModelAliasMatching() ? fileName : aliasName;
const asset = await getAsset({ name: assetName });

if (asset.error) continue;
Expand Down Expand Up @@ -18715,7 +18717,7 @@ async function setResourceOnAsset({ octokit, context }) {
const { guid: tableAssetGuid } = materialisedView
const resp = await createResource(
tableAssetGuid,
"Pull Request on GitHub",
pull_request.title,
pull_request.html_url
);
const md = `${getConnectorImage(materialisedView.attributes.connectorName)} [${
Expand Down

0 comments on commit ec0b41f

Please sign in to comment.