-
-
Notifications
You must be signed in to change notification settings - Fork 236
40 lines (31 loc) · 974 Bytes
/
usbids.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
38
39
40
# SPDX-FileCopyrightText: 2023 Frans van Dorsselaer
#
# SPDX-License-Identifier: GPL-3.0-only
---
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: usb.ids
on:
workflow_dispatch:
schedule:
- cron: '0 12 * * *'
permissions: read-all
jobs:
check:
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
steps:
- uses: actions/checkout@v4
- name: Check for new usb.ids
run: |
curl --fail --output Usbipd.Automation/usb.ids http://www.linux-usb.org/usb.ids # DevSkim: ignore DS137138
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
commit-message: 'Update usb.ids'
title: 'Update usb.ids'
branch: update-usbids
body: |
This is an automated pull request, updating `usb.ids` after a detected change.
Please review manually before merging.