mirror of
https://github.com/OMGeeky/advisory-db.git
synced 2026-01-02 17:46:38 +01:00
Create github action to assign RUSTSEC ids (#311)
* Create github action to assign RUSTSEC ids * Bump
This commit is contained in:
34
.github/workflows/assign-ids.yml
vendored
Normal file
34
.github/workflows/assign-ids.yml
vendored
Normal file
@@ -0,0 +1,34 @@
|
||||
name: Assign IDs
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: master
|
||||
|
||||
jobs:
|
||||
assign-ids:
|
||||
name: Assign IDs
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
|
||||
- name: Cache cargo bin
|
||||
uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cargo/bin
|
||||
key: rustsec-admin-v0.2.0
|
||||
|
||||
- name: Install rustsec-admin
|
||||
run: |
|
||||
if [ ! -f $HOME/.cargo/bin/rustsec-admin ]; then
|
||||
cargo install rustsec-admin
|
||||
fi
|
||||
- name: Assign IDs
|
||||
run: rustsec-admin assign-id
|
||||
- name: Create pull request
|
||||
uses: peter-evans/create-pull-request@v2
|
||||
with:
|
||||
token: ${{ secrets.GITHUB_TOKEN }}
|
||||
commit-message: Assign RUSTSEC IDs
|
||||
title: Assign RUSTSEC IDs
|
||||
branch: assign-ids
|
||||
|
||||
Reference in New Issue
Block a user