Skip to content

Commit

Permalink
Add fail condition on PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
medmes committed Jan 30, 2025
1 parent 9742436 commit d3c0d9e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/check-configs-manifests-changes.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,10 @@ jobs:
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
body: "❌ **Manifests are outdated!** Please run `make manifests` and commit the changes."
labels: ["manifests-outdated"]
});
github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.payload.pull_request.number,
labels: ["outdated-manifests"]
});

0 comments on commit d3c0d9e

Please sign in to comment.