Fosstars (Security) #1203
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 'Fosstars (Security)' | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
create_fosstars_report: | |
runs-on: ubuntu-latest | |
name: 'Security rating' | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: SAP/[email protected] | |
with: | |
report-branch: fosstars-report | |
token: '${{ secrets.GH_CLOUD_SDK_JS_ADMIN_WRITE_TOKEN }}' | |
- if: failure() || cancelled() | |
name: Slack Notify | |
uses: rtCamp/[email protected] | |
env: | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
SLACK_USERNAME: SDK Pipeline Bot | |
SLACK_TITLE: Fosstars scan ${{ job.status }} | |
SLACK_MESSAGE: 'Test failed' | |
MSG_MINIMAL: event,actions url | |
SLACK_COLOR: ${{ job.status }} | |
SLACK_MSG_AUTHOR: ' ' | |
SLACK_ICON: https://sap.github.io/cloud-sdk/img/logo.png |