We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b950036 commit e31fefeCopy full SHA for e31fefe
.github/workflows/sync-purls.yml
@@ -0,0 +1,35 @@
1
+name: Collect latest PURLs from FederatedCode
2
+
3
+on:
4
+ workflow_dispatch:
5
+ schedule:
6
+ - cron: '0 0 * * *'
7
8
+permissions:
9
+ contents: write
10
11
+jobs:
12
+ collect-purls:
13
+ strategy:
14
+ max-parallel: 1
15
+ matrix:
16
+ include:
17
+ - ecosystem: apk
18
+ - ecosystem: cargo
19
+ - ecosystem: composer
20
+ - ecosystem: conan
21
+ - ecosystem: cpan
22
+ - ecosystem: cran
23
+ - ecosystem: debain
24
+ - ecosystem: maven
25
+ - ecosystem: npm
26
+ - ecosystem: nuget
27
+ - ecosystem: pypi
28
+ - ecosystem: swift
29
30
+ uses: ./.github/workflows/collect-purls_template.yml
31
+ with:
32
+ ecosystem: ${{ matrix.ecosystem }}
33
+ path: "data/${{ matrix.ecosystem }}.txt"
34
35
0 commit comments