Update pciids.ipxe #233
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
name: Update pciids.ipxe | |
on: | |
schedule: | |
- cron: '0 6 * * 0' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run a multi-line script | |
run: | | |
wget https://raw.githubusercontent.com/pciutils/pciids/master/pci.ids -O pci.ids | |
./pciids_gen pci.ids pciids.ipxe | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: Update pciids.ipxe with upstream changes | |
branch: master | |
file_pattern: ./*.ipxe | |
repository: . | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |