Skip to content

Commit

Permalink
Create github action to assign RUSTSEC ids (rustsec#311)
Browse files Browse the repository at this point in the history
* Create github action to assign RUSTSEC ids

* Bump
  • Loading branch information
alex committed Jun 29, 2020
1 parent 45495b7 commit 418954a
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/assign-ids.yml
@@ -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

0 comments on commit 418954a

Please sign in to comment.