forked from gregkh/linux
-
Notifications
You must be signed in to change notification settings - Fork 5
37 lines (30 loc) · 1.04 KB
/
syzkaller.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: Syzkaller
on:
workflow_dispatch:
schedule:
- cron: '20 * * * *'
jobs:
sync:
runs-on: ubuntu-latest
permissions:
contents: 'write'
id-token: 'write'
env:
BUCKET_NAME: linux-mirror-db
steps:
- name: Dump Syzkaller commit IDs
run: |
echo syzkaller,commit > syzkaller.csv
curl https://syzkaller.appspot.com/upstream/fixed?json=1 | jq -r '.Bugs[] | (.link as $link | [$link, .["fix-commits"][]?.hash]) | @csv' | sed s#/bug.##g >> syzkaller.csv
head syzkaller.csv
- uses: 'google-github-actions/auth@v0'
with:
workload_identity_provider: 'projects/799795028847/locations/global/workloadIdentityPools/github-pool/providers/github-provider-new'
service_account: '[email protected]'
- uses: 'google-github-actions/upload-cloud-storage@v0'
with:
destination: '${{ env.BUCKET_NAME }}/'
path: ./
glob: 'syzkaller.*'
headers: |-
cache-control: no-cache