TUF-on-CI repository tests #1120
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: 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@27c49c016591c7cfea57f6b15296f714a5c4a5f6 # v0.13.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.event_name == 'workflow_call' && 0 || 3 }} | |
offline_valid_days: ${{ github.event_name == 'workflow_call' && 0 || 16 }} | |
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@27c49c016591c7cfea57f6b15296f714a5c4a5f6 # v0.13.0 | |
with: | |
token: ${{ secrets.TUF_ON_CI_TOKEN || secrets.GITHUB_TOKEN }} | |
success: ${{ !contains(needs.*.result, 'failure') }} |