-
Notifications
You must be signed in to change notification settings - Fork 110
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add workflow responsible for notifying of new TUF spec release (#…
…287) * feat: add workflow responsible for notifying of new TUF spec release Signed-off-by: Radoslav Dimitrov <[email protected]> * chore: limit the permissions for the job calling the version check workflow Signed-off-by: Radoslav Dimitrov <[email protected]> * docs: update the MAINTAINERS docs to address a TUF specification bump Signed-off-by: Radoslav Dimitrov <[email protected]>
- Loading branch information
Showing
2 changed files
with
21 additions
and
2 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
on: | ||
schedule: | ||
- cron: "0 13 * * *" | ||
workflow_dispatch: | ||
name: Specification version check | ||
jobs: | ||
# Get the latest TUF specification release and open an issue (if needed) | ||
specification-bump-check: | ||
permissions: | ||
contents: read | ||
issues: write | ||
uses: theupdateframework/specification/.github/workflows/check-latest-spec-version.yml@master | ||
with: | ||
tuf-version: "v1.0.29" # Should be updated to the according version either manually or extracted automatically as how it's done in python-tuf |
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