Skip to content

Commit

Permalink
zdf
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Jan 29, 2023
1 parent 777c1c1 commit cb55329
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-comment-failures.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,15 +104,15 @@ jobs:
script: |
var fs = require('fs');
var issue_number = Number(fs.readFileSync('./NR'));
if (existsSync('./missing-metadata')) {
if (fs.existsSync('./missing-metadata')) {
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: issue_number,
body: 'You added a new example but didn't add metadata for it. Please update the root Cargo.toml file.'
});
}
if (existsSync('./missing-update')) {
if (fs.existsSync('./missing-update')) {
await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
Expand Down

0 comments on commit cb55329

Please sign in to comment.