Skip to content

TUF-on-CI repository tests #1515

TUF-on-CI repository tests

TUF-on-CI repository tests #1515

Workflow file for this run

name: TUF-on-CI repository tests
on:
workflow_call:
workflow_dispatch:
schedule:
- cron: '17 4,10,16,22 * * *'
permissions: {}
jobs:
smoke-test:
runs-on: ubuntu-latest
steps:
- name: Smoke test TUF-on-CI repository with a TUF client
uses: theupdateframework/tuf-on-ci/actions/test-repository@5105c4bd73fae36f089dd4848fd1fd81a20a3df8 # v0.16.0
with:
metadata_url: https://sigstore.github.io/root-signing-staging/
update_base_url: https://tuf-repo-cdn.sigstage.dev/
# when workflow is reused in publish.yml, do not require future validity
valid_days: ${{ github.workflow == 'TUF-on-CI repository tests' && 5 || 0 }}
offline_valid_days: ${{ github.workflow == 'TUF-on-CI repository tests' && 16 || 0 }}
custom-smoke-test:
permissions:
id-token: 'write' # For signing with the GitHub workflow identity
uses: ./.github/workflows/custom-test.yml
with:
metadata_url: https://sigstore.github.io/root-signing-staging/
update-issue:
runs-on: ubuntu-latest
needs: [smoke-test, custom-smoke-test]
# During workflow_call, caller updates issue
if: always() && !cancelled() && github.workflow == 'TUF-on-CI repository tests'
permissions:
issues: 'write' # for modifying Issues
steps:
- name: Update the issue for the workflow
uses: theupdateframework/tuf-on-ci/actions/update-issue@5105c4bd73fae36f089dd4848fd1fd81a20a3df8 # v0.16.0
with:
token: ${{ secrets.TUF_ON_CI_TOKEN || secrets.GITHUB_TOKEN }}
success: ${{ !contains(needs.*.result, 'failure') }}