Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/allocate.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: "Allocate Security Identifiers"
on:
workflow_dispatch:
branches:
- main
schedule:
- cron: '27 5 * * MON-FRI'

Expand All @@ -19,6 +21,7 @@ jobs:
image: python:3.13-alpine
permissions:
contents: write
if: github.repository == 'anchore/security-identifiers' # only run for main repo
steps:
- name: Install OS dependencies
run: apk add --no-cache git openssh taplo sqlite tar zstd curl oras-cli bash date grype
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: "Publish Security Identifiers Index (development)"
on:
workflow_dispatch:
branches:
- main
push:
branches:
- main
Expand All @@ -21,6 +23,7 @@ jobs:
permissions:
contents: write
packages: write
if: github.repository == 'anchore/security-identifiers' # only run for main repo
steps:
- name: Install OS dependencies
run: apk add --no-cache git taplo sqlite tar zstd curl oras-cli bash
Expand Down