We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b4d52aa + 2f5fc91 commit d163f47Copy full SHA for d163f47
.github/workflows/bb-masking.yml
@@ -114,14 +114,16 @@ jobs:
114
done
115
116
- name: Comment on PR
117
- if: github.event_name == 'pull_request'
118
uses: actions/github-script@v7
119
env:
120
CHANGED_FILES: ${{ steps.changed-files.outputs.all_changed_files }}
121
with:
122
script: |
123
const changedFiles = process.env.CHANGED_FILES || '';
124
let commentBody = `### Masking Policy Update Summary\n\n`;
+
125
+ // Add status of merge
126
+ commentBody += `✅ **PR Status:** Merged\n\n`;
127
128
// Add changed files section
129
commentBody += `📝 **Changed Files:**\n\n`;
0 commit comments