Skip to content

Commit

Permalink
Remove dot from links
Browse files Browse the repository at this point in the history
Otherwise links try to go to a diff instead of the PR
  • Loading branch information
Nef10 committed May 9, 2024
1 parent 7bd39ad commit 3800c65
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ jobs:
};
try {
const autoMergeResult = await github.graphql(autoMergeQuery, mergeVariables);
core.info(`Enabled automerge for ${pr}.`);
core.info(`Enabled automerge for ${pr}`);
} catch(err) {
const mergeResult = await github.graphql(mergeQuery, mergeVariables);
core.info(`Merged ${pr}.`);
core.info(`Merged ${pr}`);
}
} catch(err) {
core.error(`Error enabling automerge / merging ${pr}: ${err}`);
Expand Down

0 comments on commit 3800c65

Please sign in to comment.