Email recalc #2337
Workflow file for this run
This file contains hidden or 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
| # This is a simple GitHub Actions CI workflow. | |
| name: CI | |
| # Limit permissions. See: | |
| # https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions | |
| # https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions#permissions | |
| # https://github.com/actions/first-interaction/issues/10#issuecomment-1041402989 | |
| # Since we set "permissions", anything unset has access "none". | |
| permissions: | |
| contents: read | |
| checks: write | |
| # Controls when the action will run. Triggers the workflow on push or pull | |
| # request events but only for the main branch (formerly the master branch) | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| # A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
| jobs: | |
| # This workflow contains a single job called "build" | |
| build: | |
| # The type of runner that the job will run on | |
| runs-on: ubuntu-latest | |
| # Steps represent a sequence of tasks that will be executed as part of the job | |
| steps: | |
| # Use harden-runner https://github.com/step-security/harden-runner | |
| # presented at OpenSSF Best Practices WG 2022-03-15 | |
| - uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2 | |
| with: | |
| egress-policy: audit | |
| # Checks-out your repository under $GITHUB_WORKSPACE, | |
| # so your job can access it. | |
| # As required by OpenSSF Scorecard, | |
| # we pin this to a specific hash value to prevent use of an unknown | |
| # (and possibly subverted) version. | |
| # Update by consulting: https://github.com/actions/checkout/releases | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| # OSPS-BR-01.02: Validate branch name before use in pipeline | |
| # This protects against potential future use of branch names in commands | |
| # GITHUB_REF_NAME is the short ref name (e.g., "main" not "refs/heads/main") | |
| - name: Validate branch name | |
| run: script/validate_branch_name "$GITHUB_REF_NAME" | |
| # Runs a single command using the runners shell | |
| - name: Run a one-line script | |
| run: echo Hello, world! |