Nodejs Org - OSSF Scorecard Scoring #570
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: "Nodejs Org - OSSF Scorecard Scoring" | |
on: | |
# Scheduled trigger | |
schedule: | |
- cron: "0 0 * * *" | |
# Manual trigger | |
workflow_dispatch: | |
# Permissions required to run this workflow (create issue and commit/push changes) | |
permissions: | |
contents: write | |
pull-requests: none | |
issues: write | |
packages: none | |
jobs: | |
security-scoring: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: OpenSSF Scorecard Monitor | |
uses: UlisesGascon/[email protected] | |
with: | |
scope: tools/ossf_scorecard/scope.json | |
database: tools/ossf_scorecard/database.json | |
report: tools/ossf_scorecard/report.md | |
auto-commit: true | |
auto-push: true | |
generate-issue: true | |
issue-title: "OpenSSF Scorecard Report Updated!" | |
github-token: ${{ secrets.GITHUB_TOKEN }} |