Skip to content

Commit 96f1398

Browse files
committed
Add SC Environment Impact Workflow
Adding a workflow to check for impactful SC environment changes. This will drop a comment in PRs to notify the author of impactful changes and notify the rosa core team slack channel. This is non-blocking and informational to better prevent issues during release week for the security compliance environment. HCMSEC-2787 Signed-off-by: Stephen Adams <sadams@redhat.com>
1 parent 89329e3 commit 96f1398

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
# This workflow is non-blocking and runs to check PRs for changes that could impact the security compliance environment.
3+
# #team-rosa-core will be notified so they can take a look and ensure they have the necessary changes in place in their environment before their release cycle.
4+
name: SC Environment Check
5+
6+
on:
7+
push:
8+
branches: [ master ]
9+
pull_request:
10+
branches: [ master ]
11+
12+
jobs:
13+
call-reusable-workflow:
14+
permissions:
15+
pull-requests: write
16+
contents: read
17+
uses: RedHatInsights/shared-workflows/.github/workflows/sc-environment-impact-check.yml@master
18+
secrets:
19+
SC_ASSESSOR_SLACK_URL: ${{ secrets.SC_ASSESSOR_SLACK_URL }}

0 commit comments

Comments
 (0)