Files
truthmark/.github/workflows/scorecard.yml
T
3c52f21d90 feat: add static introduction website (#29)
* feat: add static introduction website

* feat: expand static website positioning

* feat: redesign site with original visuals

* docs(readme): add package status badges

* ci: add project readiness automation

* ci: restrict scorecard workflow permissions

* ci: remove duplicate readiness config

* ci: pin workflow actions by sha

* docs: add scorecard badge

---------

Co-authored-by: MerlinH <merlinh221@gmail.com>
2026-06-27 01:15:39 +10:00

34 lines
759 B
YAML

name: OpenSSF Scorecard
on:
branch_protection_rule:
push:
branches:
- main
pull_request:
schedule:
- cron: '18 4 * * 1'
workflow_dispatch:
permissions:
contents: read
jobs:
scorecard:
name: Scorecard
runs-on: ubuntu-latest
timeout-minutes: 20
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5
with:
persist-credentials: false
- name: OSSF Scorecard action
uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3
with:
results_file: results.json
results_format: json
publish_results: ${{ github.event_name != 'pull_request' }}